You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This the template used form the given example. The VM spun up ok and i was able to validate my license. But the self_managed = true option didnt work as expected. The vFW spun up with 2 interfaces pre configured, one dedicated to equinix and one pre configured for SSH
The text was updated successfully, but these errors were encountered:
main.tf
provider "equinix" {
client_id = var.equinix_client_id
client_secret = var.equinix_client_secret
}
module "fortigate" {
source = "equinix/fortigate/equinix"
account_number = "587965"
version = "1.0.0"
byol = true
self_managed = true
license_file = "fgtlic.lic"
name = "ac043s-FGTE-VM08-EQNX-tf"
metro_code = var.metro_code_primary
platform = "large"
software_package = "VM08"
term_length = 1
notifications = ["[email protected]"]
hostname = "FGTE-VM08"
interface_count = 10
ssh_key = {
username = "ac043s"
key_name = equinix_network_ssh_key.ac043s_ssh_key.name
}
}
resource "equinix_network_ssh_key" "ac043s_ssh_key" {
name = "ac043s"
public_key = "ssh-rsa xxxx"
}
variable.tf
variable "equinix_client_id" {
}
variable "equinix_client_secret" {
}
variable "metro_code_primary" {
default = "DC"
}
versions.tf
terraform {
required_version = ">= 0.13"
required_providers {
equinix = {
source = "equinix/equinix"
version = "= 1.1.0"
}
}
}
This the template used form the given example. The VM spun up ok and i was able to validate my license. But the self_managed = true option didnt work as expected. The vFW spun up with 2 interfaces pre configured, one dedicated to equinix and one pre configured for SSH
The text was updated successfully, but these errors were encountered: