File tree Expand file tree Collapse file tree 2 files changed +8
-14
lines changed
lib/pipeline-multi-env-gitops Expand file tree Collapse file tree 2 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -142,21 +142,17 @@ export default class PipelineMultiEnvGitops {
142
142
{
143
143
id : DEV_ENV_ID ,
144
144
stackBuilder : blueprint
145
- . clone (
146
- pipelineProps . devTestEnv . region ,
147
- pipelineProps . devTestEnv . account
148
- )
145
+ . clone ( )
146
+ . withEnv ( pipelineProps . devTestEnv )
149
147
. name ( DEV_ENV_ID )
150
148
. teams ( ...devTeams )
151
149
. addOns ( ...devAddons ) ,
152
150
} ,
153
151
{
154
152
id : TEST_ENV_ID ,
155
153
stackBuilder : blueprint
156
- . clone (
157
- pipelineProps . devTestEnv . region ,
158
- pipelineProps . devTestEnv . account
159
- )
154
+ . clone ( )
155
+ . withEnv ( pipelineProps . devTestEnv )
160
156
. name ( TEST_ENV_ID )
161
157
. teams ( ...testTeams )
162
158
. addOns ( ...testAddons ) ,
@@ -176,10 +172,8 @@ export default class PipelineMultiEnvGitops {
176
172
{
177
173
id : PROD_ENV_ID ,
178
174
stackBuilder : blueprint
179
- . clone (
180
- pipelineProps . prodEnv . region ,
181
- pipelineProps . prodEnv . account
182
- )
175
+ . clone ( )
176
+ . withEnv ( pipelineProps . prodEnv )
183
177
. name ( PROD_ENV_ID )
184
178
. teams ( ...prodTeams )
185
179
. addOns ( ...prodAddons ) ,
Original file line number Diff line number Diff line change 24
24
"typescript" : " ^5.0.4"
25
25
},
26
26
"dependencies" : {
27
- "@aws-quickstart/eks-blueprints" : " 1.10.0 " ,
27
+ "@aws-quickstart/eks-blueprints" : " 1.10.1 " ,
28
28
"@datadog/datadog-eks-blueprints-addon" : " ^0.1.2" ,
29
29
"@dynatrace/dynatrace-eks-blueprints-addon" : " ^0.0.3" ,
30
30
"@kastenhq/kasten-eks-blueprints-addon" : " ^1.0.1" ,
41
41
"@instana/aws-eks-blueprint-addon" : " ^1.0.4"
42
42
},
43
43
"overrides" : {
44
- "@aws-quickstart/eks-blueprints" : " 1.10.0 " ,
44
+ "@aws-quickstart/eks-blueprints" : " 1.10.1 " ,
45
45
"aws-cdk" : " 2.86.0" ,
46
46
"xml2js" : " 0.5.0"
47
47
}
You can’t perform that action at this time.
0 commit comments