tofu-module-aws-iam-user/main.tftest.hcl
Julien Dessaux 00ee290f29
All checks were successful
main / test (push) Successful in 1m51s
chore(infrastructure): change the AWS account used for tests
2025-04-17 17:02:05 +02:00

15 lines
229 B
HCL

provider "aws" {
profile = "tests"
region = "eu-west-3"
}
run "main" {
assert {
condition = output.access_key_id != null
error_message = "invalid IAM access key ID"
}
}
variables {
name = "tftest-user"
}