This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from aws-samples/2.0.0
2.0.0
- Loading branch information
Showing
76 changed files
with
300 additions
and
28,763 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
secrets/* | ||
vars/eksexample_* | ||
vars/*/eksexample_* | ||
vars/static/custom_definitions.yaml | ||
ansible.log | ||
.vscode | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
cloudformation/eks-storage-provider-efscsi-iam.template.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
############################################################# | ||
## NOT FOR PRODUCTION USE. ## | ||
## THE CONTENT OF THIS FILE IS FOR LEARNING PURPOSES ONLY ## | ||
## created by David Surey, Amazon Web Services, 2020 ## | ||
############################################################# | ||
|
||
AWSTemplateFormatVersion: "2010-09-09" | ||
|
||
Resources: | ||
EKSStorageProviderEFSCsiPolicy: | ||
Type: 'AWS::IAM::ManagedPolicy' | ||
Properties: | ||
ManagedPolicyName: EKSStorageProviderEFSCsiPolicy | ||
PolicyDocument: | ||
Version: '2012-10-17' | ||
Statement: | ||
- Effect: Allow | ||
Action: | ||
- elasticfilesystem:DescribeAccessPoints | ||
- elasticfilesystem:DescribeFileSystems | ||
- elasticfilesystem:DescribeMountTargets | ||
- ec2:DescribeAvailabilityZones | ||
Resource: "*" | ||
- Effect: Allow | ||
Action: | ||
- elasticfilesystem:CreateAccessPoint | ||
Resource: "*" | ||
Condition: | ||
StringLike: | ||
aws:RequestTag/efs.csi.aws.com/cluster: 'true' | ||
- Effect: Allow | ||
Action: elasticfilesystem:DeleteAccessPoint | ||
Resource: "*" | ||
Condition: | ||
StringEquals: | ||
aws:ResourceTag/efs.csi.aws.com/cluster: 'true' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.