diff --git a/modules/dns/README.md b/modules/dns/README.md index c9232371..62b38efc 100644 --- a/modules/dns/README.md +++ b/modules/dns/README.md @@ -86,26 +86,25 @@ module "private-dns" { } # tftest modules=1 resources=4 ``` - ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| -| [domain](variables.tf#L53) | Zone domain, must end with a period. | string | ✓ | | -| [name](variables.tf#L71) | Zone name, must be unique within the project. | string | ✓ | | -| [project_id](variables.tf#L82) | Project id for the zone. | string | ✓ | | +| [domain](variables.tf#L54) | Zone domain, must end with a period. | string | ✓ | | +| [name](variables.tf#L72) | Zone name, must be unique within the project. | string | ✓ | | +| [project_id](variables.tf#L83) | Project id for the zone. | string | ✓ | | | [client_networks](variables.tf#L21) | List of VPC self links that can see this zone. | list(string) | | [] | | [description](variables.tf#L28) | Domain description. | string | | "Terraform managed." | | [dnssec_config](variables.tf#L34) | DNSSEC configuration for this zone. | object({…}) | | {…} | -| [enable_logging](variables.tf#L64) | Enable query logging for this zone. Only valid for public zones. | bool | | false | -| [forwarders](variables.tf#L58) | Map of {IPV4_ADDRESS => FORWARDING_PATH} for 'forwarding' zone types. Path can be 'default', 'private', or null for provider default. | map(string) | | {} | -| [peer_network](variables.tf#L76) | Peering network self link, only valid for 'peering' zone types. | string | | null | -| [recordsets](variables.tf#L87) | Map of DNS recordsets in \"type name\" => {ttl, [records]} format. | map(object({…})) | | {} | -| [service_directory_namespace](variables.tf#L122) | Service directory namespace id (URL), only valid for 'service-directory' zone types. | string | | null | -| [type](variables.tf#L128) | Type of zone to create, valid values are 'public', 'private', 'forwarding', 'peering', 'service-directory'. | string | | "private" | -| [zone_create](variables.tf#L138) | Create zone. When set to false, uses a data source to reference existing zone. | bool | | true | +| [enable_logging](variables.tf#L65) | Enable query logging for this zone. Only valid for public zones. | bool | | false | +| [forwarders](variables.tf#L59) | Map of {IPV4_ADDRESS => FORWARDING_PATH} for 'forwarding' zone types. Path can be 'default', 'private', or null for provider default. | map(string) | | {} | +| [peer_network](variables.tf#L77) | Peering network self link, only valid for 'peering' zone types. | string | | null | +| [recordsets](variables.tf#L88) | Map of DNS recordsets in \"type name\" => {ttl, [records]} format. | map(object({…})) | | {} | +| [service_directory_namespace](variables.tf#L123) | Service directory namespace id (URL), only valid for 'service-directory' zone types. | string | | null | +| [type](variables.tf#L129) | Type of zone to create, valid values are 'public', 'private', 'forwarding', 'peering', 'service-directory'. | string | | "private" | +| [zone_create](variables.tf#L139) | Create zone. When set to false, uses a data source to reference existing zone. | bool | | true | ## Outputs