~rogpeppe/juju-core/axwalk-lp1300889-disable-mongo-keyfile

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2012, 2013 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.

package environs

var (
	Providers       = &providers
	ProviderAliases = &providerAliases
)

func UpdateEnvironAttrs(envs *Environs, name string, newAttrs map[string]interface{}) {
	for k, v := range newAttrs {
		envs.rawEnvirons[name][k] = v
	}
}