@devramps/cli 0.1.28 → 0.1.29
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 +16 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2634,6 +2634,22 @@ function buildStagePolicies(steps, additionalPolicies, dockerArtifacts, bundleAr
|
|
|
2634
2634
|
]
|
|
2635
2635
|
}
|
|
2636
2636
|
});
|
|
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
|
+
});
|
|
2637
2653
|
const tfStateBucketName = generateTerraformStateBucketName(orgSlug);
|
|
2638
2654
|
policies.push({
|
|
2639
2655
|
PolicyName: "DevRampsTerraformStatePolicy",
|