2017-08-11 16:31:01 -05:00
|
|
|
# *******************************************************************
|
|
|
|
# This file was created automatically by the sample environment
|
|
|
|
# generator. Developers should use `tox -e genconfig` to update it.
|
|
|
|
# Users are recommended to make changes to a copy of the file instead
|
|
|
|
# of the original, if any customizations are needed.
|
|
|
|
# *******************************************************************
|
|
|
|
# title: Enable SSL on OpenStack Internal Endpoints
|
|
|
|
# description: |
|
|
|
|
# A Heat environment file which can be used to enable TLS for the internal
|
|
|
|
# network via certmonger
|
|
|
|
parameter_defaults:
|
|
|
|
# ******************************************************
|
|
|
|
# Static parameters - these are values that must be
|
|
|
|
# included in the environment but should not be changed.
|
|
|
|
# ******************************************************
|
|
|
|
#
|
|
|
|
# Type: boolean
|
|
|
|
EnableInternalTLS: True
|
|
|
|
|
2018-10-01 18:33:33 +02:00
|
|
|
# Messaging Notification client subscriber parameter to specify an SSL connection to the messaging host.
|
|
|
|
# Type: string
|
|
|
|
NotifyUseSSL: True
|
|
|
|
|
2018-05-01 16:05:02 -06:00
|
|
|
# Messaging client subscriber parameter to specify an SSL connection to the messaging host.
|
2017-08-11 16:31:01 -05:00
|
|
|
# Type: string
|
2018-05-01 16:05:02 -06:00
|
|
|
RpcUseSSL: True
|
2017-08-11 16:31:01 -05:00
|
|
|
|
|
|
|
# Extra properties or metadata passed to Nova for the created nodes in the overcloud. It's accessible via the Nova metadata API.
|
|
|
|
# Type: json
|
|
|
|
ServerMetadata:
|
|
|
|
ipa_enroll: True
|
|
|
|
|
|
|
|
# *********************
|
|
|
|
# End static parameters
|
|
|
|
# *********************
|
|
|
|
resource_registry:
|
2018-02-02 11:37:44 +02:00
|
|
|
OS::TripleO::Services::CertmongerUser: ../../puppet/services/certmonger-user.yaml
|
2018-12-20 12:42:48 -05:00
|
|
|
OS::TripleO::Services::HAProxyInternalTLS: ../../deployment/haproxy/haproxy-internal-tls-certmonger.yaml
|
2019-02-12 14:31:29 -05:00
|
|
|
OS::TripleO::Services::IpaClient: ../../extraconfig/services/ipaclient.yaml
|
2019-03-25 17:16:37 -04:00
|
|
|
OS::TripleO::Services::TLSProxyBase: ../../deployment/apache/apache-baremetal-puppet.yaml
|
2019-03-23 14:50:27 +01:00
|
|
|
{%- for role in roles %}
|
|
|
|
OS::TripleO::{{role.name}}ServiceServerMetadataHook: ../../extraconfig/nova_metadata/krb-service-principals/{{role.name.lower()}}-role.yaml
|
|
|
|
{%- endfor %}
|