From efc6bf01b0944d61ddd67d39c423b9fae899b98d Mon Sep 17 00:00:00 2001 From: Clayton O'Neill Date: Thu, 28 Jul 2016 12:18:16 -0400 Subject: [PATCH] Fix subnet part of OS network example This fixes the hard coded network id and also fixes the fixed_ip address to be one on the network that is specified above. --- .../providers/openstack/r/networking_network_v2.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/openstack/r/networking_network_v2.html.markdown b/website/source/docs/providers/openstack/r/networking_network_v2.html.markdown index d427c3188..96c4cb3b3 100644 --- a/website/source/docs/providers/openstack/r/networking_network_v2.html.markdown +++ b/website/source/docs/providers/openstack/r/networking_network_v2.html.markdown @@ -43,8 +43,8 @@ resource "openstack_networking_port_v2" "port_1" { security_group_ids = ["${openstack_compute_secgroup_v2.secgroup_1.id}"] fixed_ip { - "subnet_id" = "008ba151-0b8c-4a67-98b5-0d2b87666062" - "ip_address" = "172.24.4.2" + "subnet_id" = "${openstack_networking_subnet_v2.subnet_1.id}" + "ip_address" = "192.168.199.10" } }