Skip to content

Commit a22df3e

Browse files
authored
Quick fix in ansible inventory creation
1 parent 23514cd commit a22df3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

operations/deployment/terraform/inventory.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ resource "local_file" "ansible_inventory" {
1616
application_mount_target = var.application_mount_target
1717
efs_mount_target = var.efs_mount_target != null ? var.efs_mount_target : ""
1818
data_mount_target = var.data_mount_target
19+
docker_remove_orphans = var.docker_remove_orphans
1920
})
2021
filename = format("%s/%s", abspath(path.root), "inventory.yaml")
2122
}

operations/deployment/terraform/inventory.tmpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ bitops_servers:
1212
application_mount_target: ${application_mount_target}
1313
efs_mount_target: ${efs_mount_target}
1414
data_mount_target: ${data_mount_target}
15-
docker_remove_orphans: ${var.docker_remove_orphans}
16-
15+
docker_remove_orphans: ${docker_remove_orphans}

0 commit comments

Comments
 (0)