Last active
May 20, 2020 13:03
-
-
Save Kazuma/864c10e14e99d1502078 to your computer and use it in GitHub Desktop.
IAM Policy for EC2 Full Access
This file contains hidden or 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Sid": "EC2FullAccess", | |
"Action": [ | |
"ec2:*" | |
], | |
"Resource": "*", | |
"Condition": { | |
"DateGreaterThan": { | |
"aws:CurrentTime": "2015-09-10T07:00:00Z" | |
}, | |
"DateLessThan": { | |
"aws:CurrentTime": "2015-09-10T09:00:00Z" | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment