Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1163)

Side by Side Diff: environs/config.go

Issue 6587085: environs/config: add admin-secret attribute
Patch Set: environs/config: add admin-secret attribute Created 12 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « [revision details] ('k') | environs/config/config.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package environs 1 package environs
2 2
3 import ( 3 import (
4 "errors" 4 "errors"
5 "fmt" 5 "fmt"
6 "io/ioutil" 6 "io/ioutil"
7 "launchpad.net/goyaml" 7 "launchpad.net/goyaml"
8 "launchpad.net/juju-core/environs/config" 8 "launchpad.net/juju-core/environs/config"
9 "launchpad.net/juju-core/state" 9 "launchpad.net/juju-core/state"
10 "os" 10 "os"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 // The returned configuration contains no secret attributes. 147 // The returned configuration contains no secret attributes.
148 func BootstrapConfig(p EnvironProvider, cfg *config.Config, tools *state.Tools) (*config.Config, error) { 148 func BootstrapConfig(p EnvironProvider, cfg *config.Config, tools *state.Tools) (*config.Config, error) {
149 secrets, err := p.SecretAttrs(cfg) 149 secrets, err := p.SecretAttrs(cfg)
150 if err != nil { 150 if err != nil {
151 return nil, err 151 return nil, err
152 } 152 }
153 m := cfg.AllAttrs() 153 m := cfg.AllAttrs()
154 for k, _ := range secrets { 154 for k, _ := range secrets {
155 delete(m, k) 155 delete(m, k)
156 } 156 }
157 // We never want to push admin-secret to the cloud.
158 delete(m, "admin-secret")
157 m["agent-version"] = tools.Number.String() 159 m["agent-version"] = tools.Number.String()
158 return config.New(m) 160 return config.New(m)
159 } 161 }
OLDNEW
« no previous file with comments | « [revision details] ('k') | environs/config/config.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b