F5Networks / terraform-azure-bigip-module

Terraform module for Deploying BIG-IP in azure
Apache License 2.0
10 stars 23 forks source link

Where can you specify Big-IP version and Azure VM size for the build #69

Closed difzhao closed 4 months ago

difzhao commented 4 months ago

Hi team, I am new to coding in general and I am learning to use this terraform code to deploy the F5 in Azure. I am modifying the scripts to fit my need. I can't find where you would specify the BigIP version and Azure instance size for the build. Could you point me to the right direction? Thanks!

pgouband commented 4 months ago

Hi @difzhao,

Check this page: https://clouddocs.f5.com/products/orchestration/terraform/latest/BIG-IP/bigip-modules/azure.html

I think you are looking for: f5_instance_type: Specifies the size of the virtual machine.

f5_image_name: 5 SKU (image) you want to deploy. Note: The disk size of the VM will be determined based on the option you select. Important: If intending to provision multiple modules, ensure the appropriate value is selected, such as AllTwoBootLocations or AllOneBootLocation.

f5_version: It is set to default to use the latest software.

difzhao commented 4 months ago

Thanks @pgouband ! I will dig in this document. Will report back if I run into problems.