Skip to content

Commit

Permalink
new version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fmunoz committed Aug 4, 2022
1 parent fe9428a commit 7a35298
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Terraform module which creates an ISE Deployment in Azure.
module "ise-deployment" {
source = "fmunozmiranda/ise-deployment/azure"
version = "1.0.0"
version = "1.0.1"
# insert the 17 required variables here
}
Expand Down
4 changes: 2 additions & 2 deletions azure.tfvars
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
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.0/16", "172.100.0.0/16"]
azure_virtual_network_address_space = ["10.1.0.1/16", "172.100.0.0/16"]
azure_virtual_network_dns_servers = ["127.0.0.1", "127.0.0.2"]
azure_subnet_name = "TERRAFORM-VSUBNET-2"
azure_subnet_address_prefixes = ["10.1.0.0/24"]
azure_subnet_address_prefixes = ["10.1.0.1/24"]
azure_network_security_group_name = "TERRAFORM-SECURITY-2"
ise_username = "adminIse"
ise_password = "*********"
Expand Down
4 changes: 2 additions & 2 deletions examples/ise-deployment-with-network-creation/azure.tfvars
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
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.0/16", "172.100.0.0/16"]
azure_virtual_network_address_space = ["10.1.0.1/16", "172.100.0.0/16"]
azure_virtual_network_dns_servers = ["127.0.0.1", "127.0.0.2"]
azure_subnet_name = "TERRAFORM-VSUBNET-2"
azure_subnet_address_prefixes = ["10.1.0.0/24"]
azure_subnet_address_prefixes = ["10.1.0.1/24"]
azure_network_security_group_name = "TERRAFORM-SECURITY-2"
ise_username = "adminIse"
ise_password = "*********"
Expand Down
2 changes: 1 addition & 1 deletion examples/ise-deployment-with-network-creation/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "ise-deployment" {
source = "fmunozmiranda/ise-deployment/azure"
version = "1.0.0"
version = "1.0.1"
azure_resource_group_name = var.azure_resource_group_name
azure_resource_group_location = var.azure_resource_group_location
azure_virtual_network_name = var.azure_virtual_network_name
Expand Down
2 changes: 1 addition & 1 deletion examples/ise-deployment-with-network-creation/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variable "azure_virtual_network_name" {
}

variable "azure_virtual_network_address_space" {
type = list(string) //["10.1.0.0/16","172.100.0.0/16"]
type = list(string) //["10.1.0.1/16","172.100.0.0/16"]
description = "Azure Virtual Network Adress Space For ISE."
}

Expand Down
4 changes: 2 additions & 2 deletions examples/ise-deployment-with-no-network-creation/azure.tfvars
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
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.0/16", "172.100.0.0/16"]
azure_virtual_network_address_space = ["10.1.0.1/16", "172.100.0.0/16"]
azure_virtual_network_dns_servers = ["127.0.0.1", "127.0.0.2"]
azure_subnet_name = "TERRAFORM-VSUBNET-2"
azure_subnet_address_prefixes = ["10.1.0.0/24"]
azure_subnet_address_prefixes = ["10.1.0.1/24"]
azure_network_security_group_name = "TERRAFORM-SECURITY-2"
ise_username = "adminIse"
ise_password = "*********"
Expand Down
2 changes: 1 addition & 1 deletion examples/ise-deployment-with-no-network-creation/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "ise-deployment" {
source = "fmunozmiranda/ise-deployment/azure"
version = "1.0.0"
version = "1.0.1"
azure_resource_group_name = var.azure_resource_group_name
azure_resource_group_location = var.azure_resource_group_location
azure_virtual_network_name = var.azure_virtual_network_name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variable "azure_virtual_network_name" {
}

variable "azure_virtual_network_address_space" {
type = list(string) //["10.1.0.0/16","172.100.0.0/16"]
type = list(string) //["10.1.0.1/16","172.100.0.0/16"]
description = "Azure Virtual Network Adress Space For ISE."
}

Expand Down
2 changes: 1 addition & 1 deletion modules/large_deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Terraform module which creates an ISE Large Deployment in Azure.
module "ise-deployment_large_deployment" {
source = "fmunozmiranda/ise-deployment/azure//modules/large_deployment"
version = "1.0.0"
version = "1.0.1"
# insert the 14 required variables here
}
Expand Down
2 changes: 1 addition & 1 deletion modules/medium_deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Terraform module which creates an ISE Medium Deployment in Azure.
module "ise-deployment_large_deployment" {
source = "fmunozmiranda/ise-deployment/azure//modules/medium_deployment"
version = "1.0.0"
version = "1.0.1"
# insert the 14 required variables here
}
Expand Down
2 changes: 1 addition & 1 deletion modules/single_node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Terraform module which creates an ISE Single Node Deployment in Azure.
module "ise-deployment_small_deployment" {
source = "fmunozmiranda/ise-deployment/azure//modules/single_node_deployment"
version = "1.0.0"
version = "1.0.1"
# insert the 13 required variables here
}
Expand Down
2 changes: 1 addition & 1 deletion modules/small_deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Terraform module which creates an ISE Small Deployment in Azure.
module "ise-deployment_small_deployment" {
source = "fmunozmiranda/ise-deployment/azure//modules/small_deployment"
version = "1.0.0"
version = "1.0.1"
# insert the 13 required variables here
}
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variable "azure_virtual_network_name" {
}

variable "azure_virtual_network_address_space" {
type = list(string) //["10.1.0.0/16","172.100.0.0/16"]
type = list(string) //["10.1.0.1/16","172.100.0.0/16"]
description = "Azure Virtual Network Adress Space For ISE."
}

Expand Down

0 comments on commit 7a35298

Please sign in to comment.