Skip to content

Commit

Permalink
Add internal hostname to nodes data source
Browse files Browse the repository at this point in the history
  • Loading branch information
tbroden84 committed Jul 29, 2024
1 parent 414941c commit 859fc41
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cloudamqp/data_source_cloudamqp_nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ func dataSourceNodes() *schema.Resource {
Type: schema.TypeInt,
Computed: true,
},
"internal_hostname": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
Expand Down Expand Up @@ -108,7 +112,8 @@ func validateNodesSchemaAttribute(key string) bool {
"configured",
"rmq_version",
"disk_size",
"additional_disk_size":
"additional_disk_size",
"internal_hostname":
return true
}
return false
Expand Down

0 comments on commit 859fc41

Please sign in to comment.