7f195ff9a8
This was mainly there as an legacy interface which was for internal use. Now that we pull the passwords from the existing environment and don't use it, we can drop this. Reduces a number of heat resources. Change-Id: If83d0f3d72a229d737a45b2fd37507dc11a04649
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
Disable Unbound Service
|
|
|
|
parameters:
|
|
RoleNetIpMap:
|
|
default: {}
|
|
type: json
|
|
ServiceData:
|
|
default: {}
|
|
description: Dictionary packing service data
|
|
type: json
|
|
ServiceNetMap:
|
|
default: {}
|
|
description: Mapping of service_name -> network name. Typically set
|
|
via parameter_defaults in the resource registry. This
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
type: json
|
|
RoleName:
|
|
default: ''
|
|
description: Role name on which the service is applied
|
|
type: string
|
|
RoleParameters:
|
|
default: {}
|
|
description: Parameters specific to the role
|
|
type: json
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
Debug:
|
|
type: boolean
|
|
default: false
|
|
description: Set to True to enable debugging on all services.
|
|
|
|
resources:
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the multinode firewall configuration
|
|
value:
|
|
service_name: disable_unbound
|
|
host_prep_tasks:
|
|
- name: Disable unbound
|
|
service:
|
|
name: unbound
|
|
state: stopped
|
|
enabled: false
|
|
failed_when: false
|
|
- name: Set resolv.conf
|
|
copy:
|
|
content: "nameserver 1.1.1.1\nnameserver 1.0.0.1"
|
|
dest: /etc/resolv.conf
|
|
force: yes
|
|
mode: '0644'
|