screwdriver-data-schema 23.6.0 → 23.7.0
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/config/regex.js +3 -1
- package/package.json +1 -1
package/config/regex.js
CHANGED
|
@@ -119,5 +119,7 @@ module.exports = {
|
|
|
119
119
|
// Provider Subnet ID. Can be subnet-xxxxxx, with A-Z,a-z,0-9,_
|
|
120
120
|
SUBNET_ID: /^subnet-[\w]+$/,
|
|
121
121
|
// Provider Role. Can be arn:aws:iam::xxxxxx:role/some-role
|
|
122
|
-
ROLE_ARN: /^arn:aws:iam::\d{12}:role
|
|
122
|
+
ROLE_ARN: /^arn:aws:iam::\d{12}:role\/.+/,
|
|
123
|
+
// Stage setup pattern. Can be stage@stage-name:setup
|
|
124
|
+
STAGE_SETUP_PATTERN: /^stage@([\w-]+):setup$/
|
|
123
125
|
};
|