chore(e2e): Set up ec2 instance storage with encryption (#5580)

pull/5590/head
Michael Li 12 months ago committed by GitHub
parent e5b3f822c5
commit 132a52c5d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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