Skip to content

Commit

Permalink
Merge pull request #11 from zebrunner/#9
Browse files Browse the repository at this point in the history
Increased e3s-server volume size to 100gb, encrypted it
  • Loading branch information
vdelendik authored Jul 30, 2024
2 parents baec3f4 + 62a6c89 commit 9e495e7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions deploy/e3s.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ resource "aws_instance" "e3s_server" {
Name = local.e3s_server_instance_name
}

ebs_block_device {
device_name = "/dev/sda1"
delete_on_termination = true
encrypted = true
volume_type = "gp3"
volume_size = 100
}

user_data = templatefile("./ec2_data/e3s_user_data.sh", {
region = var.region
cluster_name = local.e3s_cluster_name
Expand Down

0 comments on commit 9e495e7

Please sign in to comment.