Skip to content

Commit 5eb3ccb

Browse files
committed
Fix Terraform configuration for dev desktops
The instance type `c7g` is not yet available in Frankfurt, and the AMI didn't match the machines architecture.
1 parent 53845b2 commit 5eb3ccb

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

terraform/dev-desktops/.terraform.lock.hcl

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terraform/dev-desktops/aws-region/instances.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ data "aws_ami" "instance" {
3737

3838
filter {
3939
name = "name"
40-
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
40+
values = ["ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-arm64-server-*"]
4141
}
4242

4343
filter {

terraform/dev-desktops/regions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module "aws_eu_central_1" {
1010
storage = 25
1111
}
1212
"dev-desktop-eu-1" = {
13-
instance_type = "c7g.8xlarge"
13+
instance_type = "c6g.8xlarge"
1414
storage = 1000
1515
}
1616
}

0 commit comments

Comments
 (0)