Terraform module for IxNetwork Cloud agent deployment on Google Cloud Platform
This module creates a single instance having two network interfaces.
module "Agent" {
source = "git::https://github.com/Keysight/terraform-google-module-ixnetwork-cloud-agent.git"
Eth0SubnetName = module.Vpc.PublicSubnet.name
Eth0VpcNetworkName = module.Vpc.PublicVpcNetwork.name
Eth1SubnetName = module.Vpc.PrivateSubnet.name
Eth1VpcNetworkName = module.Vpc.PrivateVpcNetwork.name
}