mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-02-24 03:24:50 +01:00
25 lines
559 B
Markdown
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": ["*"]
|
|
}
|
|
]
|
|
}
|
|
```
|