15 lines
209 B
HCL
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"
|
|
}
|