Skip to content

CiscoISE/ciscoise-terraform-automation-azure-vnet

Repository files navigation

Automated ISE Virtual Network(VNET) setup using Terraform on Azure

This project runs terraform module to setup ISE VNET infrastructure on Azure

Requirements

  • Terraform ~> 1.5.x
  • Azure CLI
  • Azure subscription with at least Contributor level access

Installations

  1. To install terraform, follow the instructions as per your operating system - Install Terraform

  2. To install Azure CLI, follow the instructions mentioned here - Install Azure CLI

Configuring and Authenticating using Azure CLI

To configure and allow access to Azure account, we need a user having atleast Contributor level access . Run the below command to get Azure access using CLI. It will prompt you to login through web browser

az login

In case you are running this command on a server where you don't have any browser you can run the below command and use the code to login on any other machine.

az login --use-device-code

To sign in, use a web browser to open the page https://microsoft.com/devicelogin and enter the code to authenticate.

NOTE: Please refer Terraform documentation for other authentication methods. - https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs

Prerequisites

Before running terraform modules, follow below steps

  1. Setup SSH for git, follow this documentation - How to setup SSH for git
  2. As per Terraform's best practice, it is recommended to store the state file remotely in cloud. As Storing terraform state files in storage account provides enhanced collaboration, security and durability over keeping state files locally.
  • If you have a Azure storage account already created to store the state file, that needs to be referenced in terraform init command.
  • If you do not have an existing storage account then please create Azure storage account configuration which needs to be referenced in terraform init command.

Run below commands to configure storage account

az group create --name myResourceGroup --location eastus

az storage account create --name mystorageaccount --resource-group myResourceGroup --location eastus --sku Standard_LRS

az storage account show-connection-string --name mystorageaccount --resource-group myResourceGroup --query connectionString --output tsv

az storage container create --name mycontainer --connection-string "<your_connection_string>"

Run terraform modules

Clone this git repo by using below this command

git clone https://github3.cisco.com/techops-operation/ise_launch_template-terraform-azure-vnet.git

Please refer Below "Inputs" section and update the terraform.tfvars as per requirement. Once updated, run below commands to deploy the VNET stack

terraform init --upgrade \
-backend-config="resource_group_name=<resource_group_name>" \
-backend-config="container_name=<container_name>" \
-backend-config="storage_account_name=<storage_account_name>" \
-reconfigure

terraform plan

terraform apply

Type 'yes' when prompted after running terraform apply

This deployment takes approx 10 minutes to deploy.

Inputs

Name Description Type Default Required
ise_func_subnet Mention the subnet name for Function App VNET integration, it is a service dedicated subnet delegated to service Microsoft.Web/serverFarms. string "ise_func_subnet"
ise_func_subnet_cidr List of CIDR block for Funcation App private subnet list(string)
[
"10.0.14.0/26"
]
ise_resource_group Mention the Resource Group name string "Cisco_ISE_RG"
location Mention the region where you want to deploy resources string "East US"
private_subnet_cidrs List of CIDR blocks for private subnets list(string)
[
"10.0.11.0/24",
"10.0.12.0/24",
"10.0.13.0/24"
]
public_subnet_cidrs List of CIDR blocks for public subnets list(string)
[
"10.0.1.0/24",
"10.0.2.0/24",
"10.0.3.0/24"
]
subscription Enter the Azure subscription ID string "a8b4411b-d161-41bf-82f5-7d80b0f9aa35"
vnet_address Enter the Virtual Network CIDR string "10.0.0.0/16"
vnet_name Enter the name of VNET string "ise_vnet"

Outputs

Name Description
ise_func_subnet Function App VNET Integration Subnet CIDR
ise_func_subnet_name Function App VNET Integration Subnet
ise_lb_subnet_name ISE Loadbalancer Subnet
ise_vm_subnet_name ISE VM subnet
private_nsg_ids NAT Gateway ID
private_subnet_ids Private Subnet ID
public_ip_ids Public IP ID
public_subnet_ids Public Subnet ID
resource_group Resource Group
vnet_name VNET name

Destroy Infrastructure

To destroy the ISE infrastructure resources created by this module, run below commands.

terraform destroy -plan
terraform destroy

To know more about the destroy command, please refer this terraform destroy page

About

CiscoISE End to End deployment and configuration via Terraform for Azure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages