tofu-module-aws-iam-user/main.tftest.hcl
Julien Dessaux 959edc9d00
All checks were successful
main / test (push) Successful in 1m47s
chore(infrastructure): bootstrap CI
2025-04-12 09:02:04 +02:00

15 lines
228 B
HCL

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