Skip to content

Commit

Permalink
Add cidr and Nameservers as computed (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
uzaxirr committed Jun 22, 2024
1 parent 4c1898f commit 8a47734
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions civo/network/resource_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ func ResourceNetwork() *schema.Resource {
"cidr_v4": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "The CIDR block for the network",
},
"nameservers_v4": {
Expand All @@ -42,6 +43,7 @@ func ResourceNetwork() *schema.Resource {
Elem: &schema.Schema{
Type: schema.TypeString,
},
Computed: true,
Description: "List of nameservers for the network",
},
// Computed resource
Expand Down

0 comments on commit 8a47734

Please sign in to comment.