mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-15 16:23:58 +01:00
eks_test_fixture example
This set of templates serves two purposes:
- it shows developers how to use the module in a straightforward way as integrated with other terraform community supported modules.
- serves as the test infrastructure for CI on the project.
IAM Permissions
The following IAM policy is the minimum needed to execute the module from the test suite.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1507789535000",
"Effect": "Allow",
"Action": [],
"Resource": ["*"]
}
]
}