Skip to content
Snippets Groups Projects
Commit df62bfc7 authored by Ravi Tripathi's avatar Ravi Tripathi
Browse files

Changing the cidr for exteranl network subnet to 192.168.0.0/24

parent 7626fea6
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ resource "openstack_networking_network_v2" "external_network" { ...@@ -26,7 +26,7 @@ resource "openstack_networking_network_v2" "external_network" {
resource "openstack_networking_subnet_v2" "external_subnet" { resource "openstack_networking_subnet_v2" "external_subnet" {
name = "${var.name}subnet" name = "${var.name}subnet"
network_id = openstack_networking_network_v2.external_network.id network_id = openstack_networking_network_v2.external_network.id
cidr = "192.168.100.0/24" cidr = "192.168.0.0/24"
ip_version = 4 ip_version = 4
dns_nameservers = ["172.20.0.137", "172.20.0.3", "8.8.8.8"] dns_nameservers = ["172.20.0.137", "172.20.0.3", "8.8.8.8"]
enable_dhcp = var.enable_dhcp enable_dhcp = var.enable_dhcp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment