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
Terraform module which creates an ISE Deployment in Azure.
Usage
module"ise-deployment" {
source="fmunozmiranda/ise-deployment/azure"version="1.0.2"azure_resource_group_name="TERRAFORM-TEST-3"azure_resource_group_location="South Central US"azure_virtual_network_name="TERRAFORM-VNET"azure_virtual_network_address_space=["10.1.0.2/16", "172.100.0.0/16"]
azure_virtual_network_dns_servers=["127.0.0.1", "127.0.0.2"]
azure_subnet_name="Subnet Name"azure_subnet_address_prefixes=["10.1.0.2/24"]
azure_network_security_group_name="Security Group Name"ise_username="Ise Username"ise_password="*********"ise_deployment="large_deployment"// This can be (single_node, small_deployment, medium_deployment, large_deployment)ise_psn_instances=4ise_base_hostname="Base_Name_for_nodes"ise_dns_server="208.67.220.220"ise_domain="sstcloud.com"ise_ntp_server="10.10.0.1"ise_timezone="America/Costa_Rica"source_image_id="ImageID"create_resource_group=truecreate_virtual_network=truecreate_security_group=truecreate_subnet=true
}