Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cloudstack/resource_cloudstack_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ func resourceCloudStackZone() *schema.Resource {
Description: "the second DNS for the Zone",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"domain": {
Description: "Network domain name for the networks in the zone",
Expand All @@ -74,6 +75,7 @@ func resourceCloudStackZone() *schema.Resource {
Description: "the guest CIDR address for the Zone",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"internal_dns1": {
Description: "the first internal DNS for the Zone",
Expand All @@ -84,16 +86,19 @@ func resourceCloudStackZone() *schema.Resource {
Description: "the second internal DNS for the Zone",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"ip6_dns1": {
Description: "the first DNS for IPv6 network in the Zone",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"ip6_dns2": {
Description: "the second DNS for IPv6 network in the Zone",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"local_storage_enabled": {
Description: "true if local storage offering enabled, false otherwise",
Expand Down