From 132a52c5d9b409b46b0630ea48960640faaeb555 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Thu, 6 Mar 2025 09:55:18 -0500 Subject: [PATCH] chore(e2e): Set up ec2 instance storage with encryption (#5580) --- 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(