Skip to content

Commit

Permalink
changed readme and updated to use latest image
Browse files Browse the repository at this point in the history
  • Loading branch information
RavinderReddyF5 committed Jul 13, 2023
1 parent 7d5b816 commit 4b01db3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
~> **WARNING** Due to F5 vulnerabilities listed in [K97843387](https://support.f5.com/csp/article/K97843387), **DO NOT USE** Module unless using **f5_image_name** input parameter. Updated images are pending publication to Marketplace.Please see [K97843387](https://support.f5.com/csp/article/K97843387) and Cloud Provider for latest updates.

# Deploys BIG-IP in Azure Cloud

This Terraform module deploys N-nic F5 BIG-IP in Azure cloud,and with module count feature we can also deploy multiple instances of BIG-IP.
Expand Down Expand Up @@ -28,9 +26,9 @@ This module is supported in the following bigip and terraform version

| BIGIP version | Terraform 1.X | Terraform 0.14 |
|---------------|----------------|----------------|
| BIG-IP 17.x | X | X |
| BIG-IP 16.x | X | X |
| BIG-IP 15.x | X | X |
| BIG-IP 14.x | X | X |

## Password Management

Expand Down Expand Up @@ -270,6 +268,7 @@ These variables have default values and don't have to be set to use this module.
| vm\_name | Name of F5 BIGIP VM to be used, it should be unique value,default is `empty string` meaning module adds with `prefix + random_id` | `string` | "" |
| f5\_image\_name | 5 SKU (image) to 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 | `string` | f5-bigip-virtual-edition-200m-best-hourly |
| f5\_version | It is set to default to use the latest software | `string` | latest |
| os\_disk\_size | The size of the Data Disk which should be created, size is in `GB` | `number` | `84` |
| f5\_product\_name | Azure BIG-IP VE Offer | `string` | f5-big-ip-best |
| image\_publisher | Specifies product image publisher | `string` | `f5-networks` |
| storage\_account\_type | Defines the type of storage account to be created. Valid options are Standard\_LRS, Standard\_ZRS, Standard\_GRS, Standard\_RAGRS, Premium\_LRS | `string` | Standard\_LRS |
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ resource "azurerm_linux_virtual_machine" "f5vm01" {

os_disk {
caching = "ReadWrite"
disk_size_gb = 84
disk_size_gb = var.os_disk_size
name = "${local.instance_prefix}-osdisk-f5vm01"
storage_account_type = var.storage_account_type
write_accelerator_enabled = false
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ variable "f5_instance_type" {
default = "Standard_D8s_v4"
}

variable "os_disk_size" {
description = "The size of the Data Disk which should be created"
type = number
default = 84
}

variable "image_publisher" {
description = "Specifies product image publisher"
type = string
Expand Down

0 comments on commit 4b01db3

Please sign in to comment.