heat.common.environment_util module¶
-
heat.common.environment_util.
merge_environments
(environment_files, files, params, param_schemata)[source]¶ Merges environment files into the stack input parameters.
If a list of environment files have been specified, this call will pull the contents of each from the files dict, parse them as environments, and merge them into the stack input params. This behavior is the same as earlier versions of the Heat client that performed this params population client-side.
- Parameters
environment_files (list or None) – ordered names of the environment files found in the files dict
files (dict) – mapping of stack filenames to contents
params (dict) – parameters describing the stack
param_schemata (dict) – parameter schema dict
-
heat.common.environment_util.
merge_map
(old, new, deep_merge=False)[source]¶ Merge nested dictionaries.