Skip to content

Commit f9a59c1

Browse files
Merge pull request #5582 from hashicorp/backport/moduli-e2e-encryption/firstly-sacred-adder
This pull request was automerged via backport-assistant
2 parents 3226dba + 9ed8a79 commit f9a59c1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

enos/modules/aws_boundary/boundary-instances.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ resource "aws_instance" "controller" {
2020
volume_type = var.controller_ebs_type
2121
throughput = var.controller_ebs_throughput
2222
tags = local.common_tags
23+
encrypted = true
2324
}
2425

2526
tags = merge(local.common_tags,
@@ -46,6 +47,7 @@ resource "aws_instance" "worker" {
4647
volume_type = var.worker_ebs_type
4748
throughput = var.worker_ebs_throughput
4849
tags = local.common_tags
50+
encrypted = true
4951
}
5052

5153
tags = merge(local.common_tags,

enos/modules/aws_worker/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ resource "aws_instance" "worker" {
139139
volume_type = var.ebs_type
140140
throughput = var.ebs_throughput
141141
tags = local.common_tags
142+
encrypted = true
142143
}
143144

144145
tags = merge(

0 commit comments

Comments
 (0)