Files
terraform-aws-eks/examples/eks_test_fixture/README.md
2018-06-06 20:55:44 -07:00

25 lines
559 B
Markdown

# eks_test_fixture example
This set of templates serves two purposes:
1. it shows developers how to use the module in a straightforward way as integrated with other terraform community supported modules.
1. 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.
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1507789535000",
"Effect": "Allow",
"Action": [],
"Resource": ["*"]
}
]
}
```