File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -245,6 +245,17 @@ resource "ibm_cd_tekton_pipeline_property" "watsonx_assistant_id_pipeline_proper
245
245
value = var. watson_assistant_instance_id
246
246
}
247
247
248
+ # Update CD pipeline with Resource Group
249
+ resource "ibm_cd_tekton_pipeline_property" "resource_group_name_pipeline_property_cd" {
250
+ depends_on = [local . cd_instance ]
251
+ count = var. resource_group_name != null ? 1 : 0
252
+ provider = ibm. ibm_resources
253
+ name = " dev-resource-group"
254
+ pipeline_id = var. ci_pipeline_id
255
+ type = " text"
256
+ value = var. resource_group_name
257
+ }
258
+
248
259
# Update CI pipeline with app flavor
249
260
resource "ibm_cd_tekton_pipeline_property" "application_flavor_pipeline_property_ci" {
250
261
depends_on = [local . cd_instance ]
You can’t perform that action at this time.
0 commit comments