terraform-provider-bigip
terraform-provider-bigip copied to clipboard
Terraform resources that can configure F5 BIG-IP products
When using bigip-fast-template resource it is expected that the .mst file first gets packaged into a .zip file. This means either a manual step or bash scripting from the admin...
### Environment * TMOS/Bigip Version: BIG-IP 14.1.4 Build 0.0.11 Final * Terraform Version: 1.0.10 * Terraform bigip provider Version: 1.12.0 ### Summary I've created a virtual_server using the bigip terraform...
An SSL certificate is generally considered not a secret since it's transmitted as part of setting up an HTTPS connection. Marking the value here as sensitive creates issues in certain...
Hi, I'd like to choose and apply an existing Application Security Policy to a particular Virtual Server. I couldn't find the right option in the docs of this provider. Is...
### Is your feature request related to a problem? Please describe. We are trying to use Terraform to provision new BIG-IPs via BIG-IQ and we need to send the DO...
I have successfully deployed `ssl_key`, `ssl_cert`, and `ssl_profile` using the below. ```terraform resource "bigip_ssl_key" "ssl_key" { name = "domain.key" content = file("domain.key") partition = "Common" } resource "bigip_ssl_certificate" "ssl_cert" {...
### Environment * TMOS/Bigip Version: v14.1.4 * Terraform Version: 0.13.6 * Terraform bigip provider Version: 1.7.0 ### Summary When running an apply we are getting the below error and only...
The provider currently requires using provider aliases for environments with more than one BIG-IP. For those with larger enterprise environments, the provider should work for an arbitrary number of BIG-IPs,...
This one is tricky... When trying to delete a monitor... The provider needs to remove from a pool before deleting. Otherwise we get this error. ``` Error: HTTP 400 ::...
We have a use case where in we build custom PARENT profiles for different applications/setup. These parent profiles are then inherited by CHILD profiles, which are applied to VIPs. **OBSERVED...