mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
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:
parent
c628dd9247
commit
45d76e4634
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue