backport of commit 50deb69460

pull/5584/head
Michael Li 1 year ago
parent c77070f03b
commit ee801335e5

@ -23,6 +23,7 @@ resource "aws_instance" "controller" {
volume_type = var.controller_ebs_type
throughput = var.controller_ebs_throughput
tags = local.common_tags
encrypted = true
}
tags = merge(local.common_tags,
@ -50,6 +51,7 @@ resource "aws_instance" "worker" {
volume_type = var.worker_ebs_type
throughput = var.worker_ebs_throughput
tags = local.common_tags
encrypted = true
}
tags = merge(local.common_tags,

@ -152,6 +152,7 @@ resource "aws_instance" "worker" {
volume_type = var.ebs_type
throughput = var.ebs_throughput
tags = local.common_tags
encrypted = true
}
tags = merge(

Loading…
Cancel
Save