@devramps/cli 0.1.18 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2034,12 +2034,7 @@ function buildOrgRolePolicies(orgSlug) {
|
|
|
2034
2034
|
"kms:DescribeKey",
|
|
2035
2035
|
"kms:CreateGrant"
|
|
2036
2036
|
],
|
|
2037
|
-
Resource: "
|
|
2038
|
-
Condition: {
|
|
2039
|
-
StringEquals: {
|
|
2040
|
-
"kms:CallerAccount": { Ref: "AWS::AccountId" }
|
|
2041
|
-
}
|
|
2042
|
-
}
|
|
2037
|
+
Resource: { "Fn::GetAtt": ["DevRampsKMSKey", "Arn"] }
|
|
2043
2038
|
},
|
|
2044
2039
|
{
|
|
2045
2040
|
Sid: "AllowS3TerraformState",
|
|
@@ -2076,7 +2071,9 @@ function buildOrgRolePolicies(orgSlug) {
|
|
|
2076
2071
|
Effect: "Allow",
|
|
2077
2072
|
Action: [
|
|
2078
2073
|
"s3:ListBucket",
|
|
2079
|
-
"s3:GetBucketLocation"
|
|
2074
|
+
"s3:GetBucketLocation",
|
|
2075
|
+
"s3:GetObject",
|
|
2076
|
+
"s3:PutObject"
|
|
2080
2077
|
],
|
|
2081
2078
|
Resource: "*"
|
|
2082
2079
|
},
|