File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ Functional examples are included in the
3636| project\_ id | Project ID where Cloud Composer Environment is created. | ` string ` | n/a | yes |
3737| region | Region where the Cloud Composer Environment is created. | ` string ` | n/a | yes |
3838| subnetwork | Subetwork where Cloud Composer is created. | ` string ` | n/a | yes |
39+ | zone | Zone where the Cloud Composer Environment is created. | ` string ` | n/a | yes |
3940
4041## Outputs
4142
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ module "composer-environment" {
2020 project_id = var. project_id
2121 composer_env_name = var. composer_env_name
2222 region = var. region
23+ zone = var. zone
2324 network = var. network
2425 subnetwork = var. subnetwork
2526}
Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ variable "region" {
2929 type = string
3030}
3131
32+ variable "zone" {
33+ description = " Zone where the Cloud Composer Environment is created."
34+ type = string
35+ }
36+
3237variable "network" {
3338 description = " Network where Cloud Composer is created."
3439 type = string
You can’t perform that action at this time.
0 commit comments