File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ This example illustrates how to use the `composer-net` module. Please see exampl
99| ------| -------------| ------| ---------| :--------:|
1010| cloud\_ composer\_ network\_ ipv4\_ cidr\_ block | The CIDR block from which IP range in tenant project will be reserved. | ` string ` | ` null ` | no |
1111| composer\_ env\_ name | Name of Cloud Composer Environment | ` string ` | n/a | yes |
12+ | dns\_ zone\_ name | Composer DNS private zone name | ` string ` | ` "composer-google-cloud-dns" ` | no |
1213| gke\_ pods\_ services\_ ip\_ ranges | The secondary IP ranges for the GKE Pods and Services IP ranges | ` list(string) ` | n/a | yes |
1314| gke\_ subnet\_ ip\_ range | The GKE subnet IP range | ` list(string) ` | n/a | yes |
1415| master\_ ipv4\_ cidr | The CIDR block from which IP range in tenant project will be reserved for the master. | ` string ` | ` null ` | no |
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ composer.cloud.google.com
1717***************************************/
1818
1919resource "google_dns_managed_zone" "composer_cloud_zone" {
20- name = " composer-google-cloud-dns "
20+ name = var . dns_zone_name
2121 project = var. network_project_id
2222 dns_name = " composer.cloud.google.com."
2323 description = " composer.cloud.google.com zone"
Original file line number Diff line number Diff line change @@ -71,3 +71,9 @@ variable "composer_env_name" {
7171 description = " Name of Cloud Composer Environment"
7272 type = string
7373}
74+
75+ variable "dns_zone_name" {
76+ description = " Composer DNS private zone name"
77+ type = string
78+ default = " composer-google-cloud-dns"
79+ }
You can’t perform that action at this time.
0 commit comments