summaryrefslogtreecommitdiff
path: root/test/integration/targets/aws_config/templates/config-s3-policy.json.j2
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/aws_config/templates/config-s3-policy.json.j2')
-rw-r--r--test/integration/targets/aws_config/templates/config-s3-policy.json.j223
1 files changed, 0 insertions, 23 deletions
diff --git a/test/integration/targets/aws_config/templates/config-s3-policy.json.j2 b/test/integration/targets/aws_config/templates/config-s3-policy.json.j2
deleted file mode 100644
index 5309330008..0000000000
--- a/test/integration/targets/aws_config/templates/config-s3-policy.json.j2
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "Version": "2012-10-17",
- "Statement": [
- {
- "Action": "sns:Publish",
- "Resource": "{{ config_sns_topic.sns_arn }}",
- "Effect": "Allow",
- "Sid": "PublishToSNS"
- },
- {
- "Action": "s3:PutObject",
- "Resource": "arn:aws:s3:::{{ config_s3_bucket }}/*",
- "Effect": "Allow",
- "Sid": "AllowPutS3Object"
- },
- {
- "Action": "s3:GetBucketAcl",
- "Resource": "arn:aws:s3:::{{ config_s3_bucket }}",
- "Effect": "Allow",
- "Sid": "AllowGetS3Acl"
- }
- ]
-}