Cisco ACI and F5 BIG-IP integration
This terraform module represents a common “Infrastructure as Code” scenario for provisioning and management of Cisco ACI and F5 BIG-IP on any private/multi/hybid infrastructure, with focus on:
- on-prem greenfield deployment
- with Cisco Service Graph (PBR)
Topology
Requirements
Using The Provider
- Run
terraform init
to initialize it.
- Specify user values in a variable definitions file
terraform.tfvars
- Run the plan and apply
terraform plan
terraform apply
Note : If you are facing the issue of Error: Error retriving Object: Object may not exists
while running terraform apply
, use -parallelism=1
with terraform plan
and terraform apply
to limit the concurrency to one thread.
terraform plan -parallelism=1
terraform apply -parallelism=1