tofu-module-aws-iam-role/main.tftest.hcl
2025-04-12 07:41:41 +02:00

15 lines
209 B
HCL

provider "aws" {
profile = "tests"
region = "eu-west-3"
}
run "main" {
assert {
condition = output.arn != null
error_message = "invalid IAM role ARN"
}
}
variables {
name = "tftest"
}