Created
March 27, 2025 21:15
-
-
Save rssnyder/e0e612521edb84051e996c3122cb6e56 to your computer and use it in GitHub Desktop.
asdfsg
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
resource "aws_iam_policy" "harness_actions" { | |
name = "harness_actions" | |
policy = jsonencode({ | |
Version = "2012-10-17" | |
Statement = [ | |
{ | |
Action = [ | |
"ec2:DeleteSnapshot", | |
"rds:StartDBCluster", | |
"rds:StartDBInstance", | |
"rds:StopDBCluster", | |
"rds:StopDBInstance" | |
] | |
Effect = "Allow" | |
Resource = "*" | |
}, | |
] | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment