Fix a typo in openstack network example

OpenStack port uses "fixed_ip" property to specify Fixed IP addresses,
but network example incorrectly uses "fixed_ipS" key.
This commit is contained in:
Karol Stepniewski 2016-02-09 17:41:03 -08:00
parent c628dd9247
commit 45d76e4634
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ resource "openstack_networking_port_v2" "port_1" {
admin_state_up = "true"
security_groups = ["${openstack_compute_secgroup_v2.secgroup_1.id}"]
fixed_ips {
fixed_ip {
"subnet_id" = "008ba151-0b8c-4a67-98b5-0d2b87666062"
"ip_address" = "172.24.4.2"
}