@dotcom-tool-kit/containerised-app 0.2.7 → 0.2.8
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/package.json +1 -1
- package/readme.md +7 -7
- package/schema.js +1 -1
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -49,13 +49,13 @@ See the relevant documentation for further options:
|
|
|
49
49
|
|
|
50
50
|
### `@dotcom-tool-kit/containerised-app`
|
|
51
51
|
|
|
52
|
-
| Property | Description | Type | Default
|
|
53
|
-
| :------------------------------ | :------------------------------------------------------------------------- | :----------------------------------------------- |
|
|
54
|
-
| **`awsRoleArnStaging`** (\*) | the ARN of an IAM role to assume when deploying to staging | `string` (_regex: `/^arn:aws:iam::\d+:role\//`_) |
|
|
55
|
-
| **`awsRoleArnProduction`** (\*) | the ARN of an IAM role to assume when deploying to production | `string` (_regex: `/^arn:aws:iam::\d+:role\//`_) |
|
|
56
|
-
| `hakoReviewEnvironments` | the set of Hako environments to deploy to in the deploy:review command | `Array<string>` | `["ft-com-
|
|
57
|
-
| `hakoStagingEnvironments` | the set of Hako environments to deploy to in the deploy:staging command | `Array<string>` | `["ft-com-test-eu"]`
|
|
58
|
-
| `hakoProductionEnvironments` | the set of Hako environments to deploy to in the deploy:production command | `Array<string>` | `["ft-com-prod-eu"]`
|
|
52
|
+
| Property | Description | Type | Default |
|
|
53
|
+
| :------------------------------ | :------------------------------------------------------------------------- | :----------------------------------------------- | :------------------- |
|
|
54
|
+
| **`awsRoleArnStaging`** (\*) | the ARN of an IAM role to assume when deploying to staging | `string` (_regex: `/^arn:aws:iam::\d+:role\//`_) | |
|
|
55
|
+
| **`awsRoleArnProduction`** (\*) | the ARN of an IAM role to assume when deploying to production | `string` (_regex: `/^arn:aws:iam::\d+:role\//`_) | |
|
|
56
|
+
| `hakoReviewEnvironments` | the set of Hako environments to deploy to in the deploy:review command | `Array<string>` | `["ft-com-test-eu"]` |
|
|
57
|
+
| `hakoStagingEnvironments` | the set of Hako environments to deploy to in the deploy:staging command | `Array<string>` | `["ft-com-test-eu"]` |
|
|
58
|
+
| `hakoProductionEnvironments` | the set of Hako environments to deploy to in the deploy:production command | `Array<string>` | `["ft-com-prod-eu"]` |
|
|
59
59
|
|
|
60
60
|
_(\*) Required._
|
|
61
61
|
<!-- end autogenerated docs -->
|
package/schema.js
CHANGED
|
@@ -20,7 +20,7 @@ module.exports = z
|
|
|
20
20
|
.describe('the ARN of an IAM role to assume when deploying to production'),
|
|
21
21
|
hakoReviewEnvironments: z
|
|
22
22
|
.array(HakoEnvironmentNameInner)
|
|
23
|
-
.default(['ft-com-
|
|
23
|
+
.default(['ft-com-test-eu'])
|
|
24
24
|
.describe('the set of Hako environments to deploy to in the deploy:review command'),
|
|
25
25
|
hakoStagingEnvironments: z
|
|
26
26
|
.array(HakoEnvironmentNameInner)
|