Skip to content

Commit

Permalink
Rename cloud-config directory
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdalmo committed Aug 15, 2019
1 parent 4cae81d commit 9cf2971
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/atc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ data "template_cloudinit_config" "atc" {
part {
content_type = "text/cloud-config"

content = templatefile("${path.module}/../cloud-config/shared.yml", {
content = templatefile("${path.module}/../cloud-init/shared.yml", {
region = data.aws_region.current.name
log_group_name = aws_cloudwatch_log_group.atc.name
prometheus_enabled = var.prometheus_enabled
Expand All @@ -85,7 +85,7 @@ data "template_cloudinit_config" "atc" {
content_type = "text/cloud-config"
merge_type = "list(append)+dict(recurse_array)+str()"

content = templatefile("${path.module}/../cloud-config/atc.yml", {
content = templatefile("${path.module}/../cloud-init/atc.yml", {
region = data.aws_region.current.name
stack_name = "${var.name_prefix}-atc-asg"
target_group = aws_lb_target_group.internal.arn
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions modules/worker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ data "template_cloudinit_config" "worker" {
part {
content_type = "text/cloud-config"

content = templatefile("${path.module}/../cloud-config/shared.yml", {
content = templatefile("${path.module}/../cloud-init/shared.yml", {
region = data.aws_region.current.name
log_group_name = aws_cloudwatch_log_group.worker.name
prometheus_enabled = var.prometheus_enabled
Expand All @@ -72,7 +72,7 @@ data "template_cloudinit_config" "worker" {
content_type = "text/cloud-config"
merge_type = "list(append)+dict(recurse_array)+str()"

content = templatefile("${path.module}/../cloud-config/worker.yml", {
content = templatefile("${path.module}/../cloud-init/worker.yml", {
region = data.aws_region.current.name
stack_name = "${var.name_prefix}-worker-asg"
tsa_host = var.tsa_host
Expand Down

0 comments on commit 9cf2971

Please sign in to comment.