Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  #Create Host Record with DNS flags
  fqdn="testipv4v6"
  enable_dns = "false"

  }

resource "infoblox_ip_allocation" "ip_allocation" {
  ipv4_addr = "20.0.0.10"
  ipv6_addr = "2000::10"    

  fqdn="testipNew.example.com"
  enable_dns = "true"  

  comment = "tf IPv4 and ipv6 allocation"
  ext_attrs = jsonencode({
     "Tenant ID" = "tf-plugin"
      "Network Name" = "tf-network"
      "VM Name" =  "tf-ec2-instance"
      "Location" = "Test loc2."
      "Site" = "Test site"
  })
}