Skip to content

Commit 007d61b

Browse files
authored
Update main.tf
1 parent 6f851d8 commit 007d61b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ data "aws_ssm_parameter" "this" {
2121
resource "aws_instance" "this" {
2222
count = local.create && !var.ignore_ami_changes && !var.create_spot_instance ? 1 : 0
2323

24-
ami = local.ami
25-
instance_type = var.instance_type
24+
ami = "ami-08b5b3a93ed654d19"
25+
instance_type = "t2.micro"
2626
cpu_core_count = var.cpu_core_count
2727
cpu_threads_per_core = var.cpu_threads_per_core
2828
hibernation = var.hibernation
@@ -32,7 +32,7 @@ resource "aws_instance" "this" {
3232
user_data_replace_on_change = var.user_data_replace_on_change
3333

3434
availability_zone = var.availability_zone
35-
subnet_id = var.subnet_id
35+
subnet_id = "subnet-0806f0df3d1bc8297"
3636
vpc_security_group_ids = var.vpc_security_group_ids
3737

3838
key_name = var.key_name

0 commit comments

Comments
 (0)