heat_integrationtests.functional.test_encrypted_parameter Module¶heat_integrationtests.functional.test_encrypted_parameter.EncryptedParametersTest(*args, **kwargs)[source]¶Bases: heat_integrationtests.functional.functional_base.FunctionalTestsBase
template = "\nheat_template_version: 2014-10-16\nparameters:\n  image:\n    type: string\n  flavor:\n    type: string\n  network:\n    type: string\n  foo:\n    type: string\n    description: 'parameter with encryption turned on'\n    hidden: true\n    default: secret\nresources:\n  server_with_encrypted_property:\n    type: OS::Nova::Server\n    properties:\n      name: { get_param: foo }\n      image: { get_param: image }\n      flavor: { get_param: flavor }\n      networks: [{network: {get_param: network} }]\noutputs:\n  encrypted_foo_param:\n    description: 'encrypted param'\n    value: { get_param: foo }\n"¶
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.