Open LuisPiedra opened 3 weeks ago
After creating a bigip_ltm_datagroup resource with internal = false, the data group and corresponding data group file are created, but then the provider fails to retrieve it when querying data groups lists.
bigip_ltm_datagroup
internal = false
This is happening after https://github.com/F5Networks/terraform-provider-bigip/pull/821/files and working properly in versions prior to that change.
Steps to reproduce the behavior:
resource "local_file" "external" { content = "foo := bar" filename = "foo.bar" } resource "bigip_ltm_datagroup" "external" { name = "/Common/external-test" type = "string" internal = false records_src = local_file.external.filename }
The data group and data group file are created and properly included in the state file.
The data group and data group file are created, but not refreshed.
Error: Error retrieving Data Group List /Common/external-test: Object not found - /Common/external-test
Hi,
Thanks for reporting. Added to the backlog and internal tracking ID for this request is: INFRAANO-1687.
Environment
Summary
After creating a
bigip_ltm_datagroup
resource withinternal = false
, the data group and corresponding data group file are created, but then the provider fails to retrieve it when querying data groups lists.This is happening after https://github.com/F5Networks/terraform-provider-bigip/pull/821/files and working properly in versions prior to that change.
Steps To Reproduce
Steps to reproduce the behavior:
Expected Behavior
The data group and data group file are created and properly included in the state file.
Actual Behavior
The data group and data group file are created, but not refreshed.