Skip to content

Commit df17a73

Browse files
committed
Change default for empty string to null instead and regenerate docs
1 parent 3d9a8f4 commit df17a73

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

modules/network-connectivity-center/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ An extensive example that also contains the creation and attachment of multiple
2323
| Name | Description | Type | Default | Required |
2424
|------|-------------|------|---------|:--------:|
2525
| export\_psc | Whether Private Service Connect transitivity is enabled for the hub | `bool` | `false` | no |
26-
| hybrid\_spokes | VLAN attachments and VPN Tunnels that are associated with the spoke. Type must be one of `interconnect` and `vpn`. | <pre>map(object({<br> location = string<br> uris = set(string)<br> site_to_site_data_transfer = optional(bool, false)<br> type = string<br> description = optional(string, "Managed by Terraform")<br> labels = optional(map(string))<br> }))</pre> | `{}` | no |
27-
| ncc\_hub\_description | The description of the NCC Hub | `string` | `"Managed by Terraform"` | no |
26+
| hybrid\_spokes | VLAN attachments and VPN Tunnels that are associated with the spoke. Type must be one of `interconnect` and `vpn`. | <pre>map(object({<br> location = string<br> uris = set(string)<br> site_to_site_data_transfer = optional(bool, false)<br> type = string<br> description = optional(string)<br> labels = optional(map(string))<br> }))</pre> | `{}` | no |
27+
| ncc\_hub\_description | The description of the NCC Hub | `string` | `null` | no |
2828
| ncc\_hub\_labels | These labels will be added the NCC hub | `map(string)` | `{}` | no |
2929
| ncc\_hub\_name | The Name of the NCC Hub | `string` | n/a | yes |
3030
| project\_id | Project ID of the project that holds the network. | `string` | n/a | yes |
31-
| router\_appliance\_spokes | Router appliance instances that are associated with the spoke. | <pre>map(object({<br> instances = set(object({<br> virtual_machine = string<br> ip_address = string<br> }))<br> location = string<br> site_to_site_data_transfer = optional(bool, false)<br> description = optional(string, "Managed by Terraform")<br> labels = optional(map(string))<br> }))</pre> | `{}` | no |
31+
| router\_appliance\_spokes | Router appliance instances that are associated with the spoke. | <pre>map(object({<br> instances = set(object({<br> virtual_machine = string<br> ip_address = string<br> }))<br> location = string<br> site_to_site_data_transfer = optional(bool, false)<br> description = optional(string)<br> labels = optional(map(string))<br> }))</pre> | `{}` | no |
3232
| spoke\_labels | These labels will be added to all NCC spokes | `map(string)` | `{}` | no |
33-
| vpc\_spokes | VPC network that is associated with the spoke | <pre>map(object({<br> uri = string<br> exclude_export_ranges = optional(set(string))<br> description = optional(string, "Managed by Terraform")<br> labels = optional(map(string))<br> }))</pre> | `{}` | no |
33+
| vpc\_spokes | VPC network that is associated with the spoke | <pre>map(object({<br> uri = string<br> exclude_export_ranges = optional(set(string))<br> description = optional(string)<br> labels = optional(map(string))<br> }))</pre> | `{}` | no |
3434

3535
## Outputs
3636

modules/network-connectivity-center/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "ncc_hub_name" {
2727
variable "ncc_hub_description" {
2828
description = "The description of the NCC Hub"
2929
type = string
30-
default = ""
30+
default = null
3131
}
3232
variable "ncc_hub_labels" {
3333
description = "These labels will be added the NCC hub"

0 commit comments

Comments
 (0)