From 0df4b41d80ac73fa55fd49bdfe5a7ed321c1c53c Mon Sep 17 00:00:00 2001 From: michaelfmnk Date: Tue, 30 Jul 2024 13:41:20 +0200 Subject: [PATCH] added missing network description --- cloudconnexa/data_source_network.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cloudconnexa/data_source_network.go b/cloudconnexa/data_source_network.go index 9f51371..155517e 100644 --- a/cloudconnexa/data_source_network.go +++ b/cloudconnexa/data_source_network.go @@ -23,6 +23,11 @@ func dataSourceNetwork() *schema.Resource { Required: true, Description: "The network name.", }, + "description": { + Type: schema.TypeString, + Computed: true, + Description: "The description of the network.", + }, "egress": { Type: schema.TypeBool, Computed: true,