Merge pull request #2525 from avoidik/openstack_subnet_fix

Return subnet_id as defined in kubespray.tf
This commit is contained in:
Andreas Krüger 2018-03-30 13:42:12 +02:00 committed by GitHub
commit 7e58b96328
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,6 @@ output "router_id" {
value = "${openstack_networking_router_interface_v2.k8s.id}"
}
output "network_id" {
output "subnet_id" {
value = "${openstack_networking_subnet_v2.k8s.id}"
}