Primer commit con README

This commit is contained in:
vergman2 2022-08-31 14:11:11 +02:00
commit b82ace9367
2 changed files with 17 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
En este repositorio guardo ejemplos de políticas AWS

14
fechahora.json Normal file
View File

@ -0,0 +1,14 @@
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "service-prefix:action-name",
"Resource": "*",
"Condition": {
"DateGreaterThan": {"aws:CurrentTime": "2020-04-01T00:00:00Z"},
"DateLessThan": {"aws:CurrentTime": "2020-06-30T23:59:59Z"}
}
}
]
}