The data source bigip_ltm_node is missing the description.
Steps To Reproduce
Steps to reproduce the behavior:
Provide terraform resource config which you are facing trouble along with the output of it.
data "bigip_ltm_node" "this" {
name = "this"
partition = "Common"
}
output "bigip-ltm-node" {
value = data.bigip_ltm_node.this
}
This produces the output lacking the description... instead, the description is listed as:
"description" = tostring(null)
2. To get to know more about the issue, provide terraform debug logs
N/A
3. To capture debug logs, export TF_LOG variable with debug ( export TF_LOG= DEBUG ) before
runnning terraform apply/plan
N/A
4. As3/DO json along with the resource config( for AS3/DO resource issues )
### Expected Behavior
Expected the node description to be output in the data source.
### Actual Behavior
This produces the output lacking the description... instead, the description is listed as:
"description" = tostring(null)
Suspect this attribute just needs to be set here:
https://github.com/F5Networks/terraform-provider-bigip/blob/master/bigip/datasource_bigip_ltm_node.go#L150
It appears this attribute is available in the API https://clouddocs.f5.com/api/icontrol-rest/APIRef_tm_ltm_node.html
Environment
Summary
The data source
bigip_ltm_node
is missing the description.Steps To Reproduce
Steps to reproduce the behavior:
output "bigip-ltm-node" { value = data.bigip_ltm_node.this }
"description" = tostring(null)
"description" = tostring(null)