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

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.
  2. 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": ["*"]
    }
  ]
}