Skip to content

Commit

Permalink
Add cidr and Nameservers as computed
Browse files Browse the repository at this point in the history
  • Loading branch information
uzaxirr committed Jun 22, 2024
1 parent f33c9c7 commit 0529090
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 @@ -33,6 +33,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 @@ -41,6 +42,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 0529090

Please sign in to comment.