Skip to content

Commit 2406126

Browse files
committed
Fix fabric_compute data source id attribute
fabric_compute data source `id` attribute needs to be `computed` when lookup is performed by `filter` Signed-off-by: Ferran Rodenas <[email protected]>
1 parent 0b23990 commit 2406126

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

vra/data_source_fabric_compute.go

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ func dataSourceFabricCompute() *schema.Resource {
1616
Schema: map[string]*schema.Schema{
1717
"id": {
1818
Type: schema.TypeString,
19+
Computed: true,
1920
ConflictsWith: []string{"filter"},
2021
Description: "The id of the fabric compute resource instance.",
2122
Optional: true,

0 commit comments

Comments
 (0)