Skip to content

Commit e33ae6a

Browse files
committed
make fqdn/fqhn consistent
1 parent f19ddc6 commit e33ae6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

environments/skeleton/{{cookiecutter.environment}}/tofu/inventory.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "local_file" "hosts" {
44
"cluster_name": var.cluster_name,
55
"cluster_domain_suffix": var.cluster_domain_suffix
66
"control": openstack_compute_instance_v2.control
7-
"control_fqhn": local.control_fqdn
7+
"control_fqdn": local.control_fqdn
88
"login_groups": module.login
99
"compute_groups": module.compute
1010
"state_dir": var.state_dir

environments/skeleton/{{cookiecutter.environment}}/tofu/inventory.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ control:
1111
ansible_host: ${control.access_ip_v4}
1212
instance_id: ${control.id}
1313
networks: ${jsonencode({for n in control.network: n.name => {"fixed_ip_v4": n.fixed_ip_v4, "fixed_ip_v6": n.fixed_ip_v6}})}
14-
node_fqdn: ${control_fqhn}
14+
node_fqdn: ${control_fqdn}
1515
vars:
1616
appliances_state_dir: ${state_dir} # NB needs to be set on group not host otherwise it is ignored in packer build!
1717

0 commit comments

Comments
 (0)