We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The bigip_ltm_pool_attachment import block does not populate most properties.
Steps to reproduce the behavior:
import { to = bigip_ltm_pool_attachment.pool_1 id = "{\"pool\": \"/Common/terraform_pool\", \"node\": \"/Common/terraform_node:8443\"}" }
To get to know more about the issue, provide terraform debug logs
To capture debug logs, export TF_LOG variable with debug ( export TF_LOG= DEBUG ) before runnning terraform apply/plan
As3/DO json along with the resource config( for AS3/DO resource issues )
Monitor, ratio, priority_group should be set; perhaps more properties should also be set, but these are ones that I know are an issue for us:
resource "bigip_ltm_pool_attachment" "pool_1" { connection_limit = null connection_rate_limit = null dynamic_ratio = null fqdn_autopopulate = null monitor = "/Common/https_head_8443" node = "/Common/terraform_node:8443" pool = "/Common/terraform_pool" priority_group = "2" ratio = "1" state = null }
resource "bigip_ltm_pool_attachment" "pool_1" { connection_limit = null connection_rate_limit = null dynamic_ratio = null fqdn_autopopulate = null monitor = null node = "/Common/terraform_node:8443" pool = "/Common/terraform_pool" priority_group = null ratio = null state = null }
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for reporting. Added to the backlog and internal tracking ID for this request is: INFRAANO-1699.
Sorry, something went wrong.
No branches or pull requests
Environment
Summary
The bigip_ltm_pool_attachment import block does not populate most properties.
Steps To Reproduce
Steps to reproduce the behavior:
To get to know more about the issue, provide terraform debug logs
To capture debug logs, export TF_LOG variable with debug ( export TF_LOG= DEBUG ) before
runnning terraform apply/plan
As3/DO json along with the resource config( for AS3/DO resource issues )
Expected Behavior
Monitor, ratio, priority_group should be set; perhaps more properties should also be set, but these are ones that I know are an issue for us:
Actual Behavior
The text was updated successfully, but these errors were encountered: