neutron_network: Use the new project_name property

... instead of the deprecated tenant_name property.

Depends-on: https://review.opendev.org/828942
Change-Id: I24ff0a518af3e01fabbfaca6568cd5de89708c98
This commit is contained in:
Takashi Kajinami 2022-02-17 23:56:02 +09:00
parent 96b226bf25
commit 8504e4d3c2
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ class openstack_integration::provision (
if $neutron {
neutron_network { 'public':
tenant_name => 'openstack',
project_name => 'openstack',
router_external => true,
provider_physical_network => 'external',
provider_network_type => 'flat',
@ -74,7 +74,7 @@ class openstack_integration::provision (
gateway_ip => '172.24.5.1',
enable_dhcp => false,
network_name => 'public',
tenant_name => 'openstack',
project_name => 'openstack',
}
}