tofu-module-aws-iam-role/main.tftest.hcl
Julien Dessaux 757343409e
All checks were successful
main / test (push) Successful in 48s
chore(infrastructure): bootstrap CI
2025-04-12 07:56:07 +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"
}