From ee801335e5c5d753186b95bbe65895e3b155eb44 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Tue, 4 Mar 2025 20:50:01 +0000 Subject: [PATCH] backport of commit 50deb694603a372626858ff6a5dda74273fc0764 --- enos/modules/aws_boundary/boundary-instances.tf | 2 ++ enos/modules/aws_worker/main.tf | 1 + 2 files changed, 3 insertions(+) diff --git a/enos/modules/aws_boundary/boundary-instances.tf b/enos/modules/aws_boundary/boundary-instances.tf index e074e60033..e345c74103 100644 --- a/enos/modules/aws_boundary/boundary-instances.tf +++ b/enos/modules/aws_boundary/boundary-instances.tf @@ -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, diff --git a/enos/modules/aws_worker/main.tf b/enos/modules/aws_worker/main.tf index 0fd1c9e395..27910cc3c4 100644 --- a/enos/modules/aws_worker/main.tf +++ b/enos/modules/aws_worker/main.tf @@ -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(