You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With some resources like bigip_as3 or bigip_pool or bigip_ltm_profile_http, I never received a downstream response resulting in a infinite loop of Still creating... The resource is however created on the BIG-IP.
Steps To Reproduce
Steps to reproduce the behavior:
Provide terraform resource config which you are facing trouble along with the output of it.
main.tf
terraform-provider-bigip git:(devel) terraform apply
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# bigip_ltm_profile_http.sanjose-http will be created
+ resource "bigip_ltm_profile_http" "sanjose-http" {
+ accept_xff = (known after apply)
+ basic_auth_realm = (known after apply)
+ defaults_from = "/Common/http"
+ description = (known after apply)
+ head_erase = (known after apply)
+ head_insert = (known after apply)
+ id = (known after apply)
+ insert_xforwarded_for = (known after apply)
+ lws_separator = (known after apply)
+ lws_width = (known after apply)
+ name = "/Common/sanjose-http"
+ oneconnect_transformations = (known after apply)
+ proxy_type = (known after apply)
+ redirect_rewrite = (known after apply)
+ request_chunking = (known after apply)
+ response_chunking = (known after apply)
+ response_headers_permitted = (known after apply)
+ server_agent_name = (known after apply)
+ via_host_name = (known after apply)
+ via_request = (known after apply)
+ via_response = (known after apply)
+ xff_alternative_names = (known after apply)
}
Plan: 1 to add, 0 to change, 0 to destroy.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
bigip_ltm_profile_http.sanjose-http: Creating...
bigip_ltm_profile_http.sanjose-http: Creation complete after 2s [id=/Common/sanjose-http]
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
terraform-provider-bigip git:(devel) terraform show
# bigip_ltm_profile_http.sanjose-http:
resource "bigip_ltm_profile_http" "sanjose-http" {
defaults_from = "/Common/http"
id = "/Common/sanjose-http"
name = "/Common/sanjose-http"
proxy_type = "reverse"
response_headers_permitted = []
xff_alternative_names = []
}
Environment
Summary
With some resources like bigip_as3 or bigip_pool or bigip_ltm_profile_http, I never received a downstream response resulting in a infinite loop of Still creating... The resource is however created on the BIG-IP.
Steps To Reproduce
Steps to reproduce the behavior:
main.tf
terraform.tfvars
output
Expected Behavior
The resource should be created and terraform shoudl receive a response and exit properly with a terraform.tfstate containing the resource.
Actual Behavior
The resource is created on the BIG-IP but terraform seems to not receive / interpret a response and hangs on "Still creating..." loop.
The text was updated successfully, but these errors were encountered: