Forum Discussion
Srirengaa
Cirrus
Apr 07, 2022I am unable to connect F5 using terraform
I am trying to connect F5 using terraform and getting below error
Srirengaa
Cirrus
Apr 08, 2022I found it. The script is fine but need to add the resource module what we need to create using terraform. After added below steps in the existing script and it started working, So learning here using terraform to connect F5 will not give any message like " the device is connected" More over i didn't define the SSH or https port to the script that should be also considered one.
resource "bigip_ltm_node" "node" {
name = "/Common/terraform_node1"
address = "192.168.30.1"
connection_limit = "0"
dynamic_ratio = "1"
monitor = "/Common/icmp"
description = "Test-Node"
rate_limit = "disabled"
fqdn {
address_family = "ipv4"
interval = "3000"
}
}
This is a whole script
variable hostname {}
variable username {}
variable password {}
terraform {
required_providers {
bigip = {
source = "f5networks/bigip"
version = "1.13.0"
}
}
}
provider "bigip" {
address = var.hostname
username = var.username
password = var.password
}
resource "bigip_ltm_node" "node" {
name = "/Common/terraform_node1"
address = "192.168.30.1"
connection_limit = "0"
dynamic_ratio = "1"
monitor = "/Common/icmp"
description = "Test-Node"
rate_limit = "disabled"
fqdn {
address_family = "ipv4"
interval = "3000"
}
}
Verified in F5 and it is created a node using terraform.
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects