8799a94214
Including this template in a deploy but not including anything in `parameter_defaults` is going to fail when heat attempts to parse that environment file because `parameter_defaults` is empty: ValueError: environment has empty section "parameter_defaults" This commit attempts to fix that by commenting out the section since there doesn't seem to be a reasonable default to use. Change-Id: I06a5e13d768c65a8d5cf0b635620c33523b374f4
14 lines
640 B
YAML
14 lines
640 B
YAML
# A Heat environment file to enable the barbican simple crypto backend. Note
|
|
# that barbican needs to be enabled in order to use this.
|
|
# parameter_defaults:
|
|
# In order to use this backend, you need to uncomment this value and
|
|
# provide an appropriate KEK that barbican will use to encrypt secrets
|
|
# in the database.
|
|
#
|
|
# BarbicanSimpleCryptoKek: The Key-Encryption-Key goes here.
|
|
# BarbicanSimpleCryptoGlobalDefault : whether this plugin is the global default
|
|
# -- defaults to false
|
|
|
|
resource_registry:
|
|
OS::TripleO::Services::BarbicanBackendSimpleCrypto: ../deployment/barbican/barbican-backend-simple-crypto-puppet.yaml
|