@devramps/cli 0.1.29 → 0.1.30
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 +6 -16
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2116,6 +2116,12 @@ function buildOrgRolePolicies(orgSlug) {
|
|
|
2116
2116
|
],
|
|
2117
2117
|
Resource: "*"
|
|
2118
2118
|
},
|
|
2119
|
+
{
|
|
2120
|
+
Sid: "AllowEventBridgePutEvents",
|
|
2121
|
+
Effect: "Allow",
|
|
2122
|
+
Action: "events:PutEvents",
|
|
2123
|
+
Resource: "*"
|
|
2124
|
+
},
|
|
2119
2125
|
{
|
|
2120
2126
|
Sid: "AllowSecretsManagerOperations",
|
|
2121
2127
|
Effect: "Allow",
|
|
@@ -2634,22 +2640,6 @@ function buildStagePolicies(steps, additionalPolicies, dockerArtifacts, bundleAr
|
|
|
2634
2640
|
]
|
|
2635
2641
|
}
|
|
2636
2642
|
});
|
|
2637
|
-
policies.push({
|
|
2638
|
-
PolicyName: "DevRampsEventBridgePolicy",
|
|
2639
|
-
PolicyDocument: {
|
|
2640
|
-
Version: "2012-10-17",
|
|
2641
|
-
Statement: [
|
|
2642
|
-
{
|
|
2643
|
-
Sid: "AllowEventBridgePutEvents",
|
|
2644
|
-
Effect: "Allow",
|
|
2645
|
-
Action: [
|
|
2646
|
-
"events:PutEvents"
|
|
2647
|
-
],
|
|
2648
|
-
Resource: "*"
|
|
2649
|
-
}
|
|
2650
|
-
]
|
|
2651
|
-
}
|
|
2652
|
-
});
|
|
2653
2643
|
const tfStateBucketName = generateTerraformStateBucketName(orgSlug);
|
|
2654
2644
|
policies.push({
|
|
2655
2645
|
PolicyName: "DevRampsTerraformStatePolicy",
|