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
--- | |
# | |
# Detects the cloud provider on which the VM is running and sets accordingly the | |
# following variables: | |
# cloud_platform_is_aws=true when on AWS, false otherwise | |
# cloud_platform_is_gcp=true when on GCP, false otherwise | |
# cloud_platform_is_azure=true when on Azure, false otherwise | |
# cloud_platform_name: | |
# - 'azure' when on Azure | |
# - 'aws' when on AWS |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"s3:DeleteObject", | |
"s3:PutObject", | |
"s3:GetObject" | |
], | |
"Effect": "Allow", |