Skip to content

Commit 300c2e5

Browse files
committed
Merge branch 'NDR-56-Test' into NDR-56
2 parents b07c2ac + 378ae85 commit 300c2e5

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

infrastructure/main.tf

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,14 @@ data "aws_elb_service_account" "main" {}
3131

3232
data "aws_ssm_parameter" "apim_url" {
3333
name = "/repo/${var.environment}/user-input/apim-api-url"
34-
}
34+
}
35+
36+
resource "aws_instance" "example" {
37+
ami = "ami-0c55b159cbfafe1f0" # This is an example Amazon Linux 2 AMI ID (may need updating)
38+
instance_type = "t2.micro"
39+
40+
# This will cause a validation error because 'nonexistent_parameter'
41+
# is not a valid argument for aws_instance
42+
nonexistent_parameter = "this_will_fail"
43+
}
44+

0 commit comments

Comments
 (0)