Skip to content
New issue

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

bigip_ltm_pool_attachment import block does not populate most properties #1031

Open
jtgasper3 opened this issue Nov 14, 2024 · 1 comment
Open
Labels
Backlog issue will be tracked by JIRA in backlog bug

Comments

@jtgasper3
Copy link

Environment

  • TMOS/Bigip Version: unknown
  • Terraform Version: 1.9.8
  • Terraform bigip provider Version: 1.22.5

Summary

The bigip_ltm_pool_attachment import block does not populate most properties.

Steps To Reproduce

Steps to reproduce the behavior:

  1. Provide terraform resource config which you are facing trouble along with the output of it.
import {
  to = bigip_ltm_pool_attachment.pool_1
  id = "{\"pool\": \"/Common/terraform_pool\", \"node\": \"/Common/terraform_node:8443\"}"
}
  1. To get to know more about the issue, provide terraform debug logs

  2. To capture debug logs, export TF_LOG variable with debug ( export TF_LOG= DEBUG ) before
    runnning terraform apply/plan

  3. 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:

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
}

Actual Behavior

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
}
@jtgasper3 jtgasper3 added the bug label Nov 14, 2024
@pgouband
Copy link
Collaborator

Hi,

Thanks for reporting. Added to the backlog and internal tracking ID for this request is: INFRAANO-1699.

@pgouband pgouband added the Backlog issue will be tracked by JIRA in backlog label Nov 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Backlog issue will be tracked by JIRA in backlog bug
Projects
None yet
Development

No branches or pull requests

2 participants