From 3f0c6d5f96d84108d03f0fec0a477cb714baca64 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Tue, 14 Apr 2015 18:11:07 -0400 Subject: [PATCH] examples: fix apache_with_paths.pp Minor fix for examples, to avoid any confusion. Change-Id: I6e07b0823b141f65be237303a15520d46cda5e5a Closes-bug: #1267627 --- examples/apache_with_paths.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/apache_with_paths.pp b/examples/apache_with_paths.pp index ce61bea72..8b0fc699c 100644 --- a/examples/apache_with_paths.pp +++ b/examples/apache_with_paths.pp @@ -38,8 +38,8 @@ class { '::keystone::roles::admin': password => 'ChangeMe', } class { '::keystone::endpoint': - public_url => "https://${::fqdn}:443/main/", - admin_address => "https://${::fqdn}:443/admin/", + public_url => "https://${::fqdn}:443/main/", + admin_url => "https://${::fqdn}:443/admin/", } keystone_config { 'ssl/enable': ensure => absent }