Compare commits

...

2 Commits

Author SHA1 Message Date
Noah Masur
7ce9ed564e
enforce that instance is running 2024-05-07 23:28:46 -04:00
Noah Masur
8074276643
use terraform_data to fix data-based replacement 2024-05-07 23:23:28 -04:00
2 changed files with 12 additions and 4 deletions

View File

@ -13,6 +13,11 @@ resource "aws_instance" "instance" {
}
}
resource "aws_ec2_instance_state" "instance" {
instance_id = aws_instance.instance.id
state = "running"
}
data "aws_vpc" "vpc" {
default = true
}

View File

@ -14,7 +14,10 @@
data "aws_s3_object" "image" {
bucket = var.images_bucket
key = "arrow.vhd"
checksum_mode = "ENABLED"
}
resource "terraform_data" "image_replacement" {
input = data.aws_s3_object.image.checksum_sha256
}
# Setup IAM access for the VM Importer
@ -72,7 +75,7 @@ resource "aws_ebs_snapshot_import" "image" {
role_name = aws_iam_role.vmimport.name
lifecycle {
replace_triggered_by = [data.aws_s3_object.image.checksum_sha256]
replace_triggered_by = [terraform_data.image_replacement]
}
}