Remove heat::engine::heat_watch_server_url

... because it was deprecated a while ago[1].

[1] ae564bbd7c1f94c95c7a0ddbda26219d4f2f8a13

Change-Id: I7fd241112c8bd5ee5cd9edaa6669b162ffbf190c
This commit is contained in:
Takashi Kajinami 2020-04-26 22:01:11 +09:00
parent d153dbea0e
commit 6c4650f815
2 changed files with 4 additions and 12 deletions

View File

@ -134,12 +134,6 @@
# by user-controlled servers to make calls back to Heat.
# Defaults to $::os_service_default
#
# DEPRECATED PARAMETERS
#
# [*heat_watch_server_url*]
# (optional) URL of the Heat cloudwatch server
# Defaults to undef.
#
class heat::engine (
$auth_encryption_key,
$package_ensure = 'present',
@ -166,16 +160,10 @@ class heat::engine (
$plugin_dirs = $::os_service_default,
$client_retry_limit = $::os_service_default,
$server_keystone_endpoint_type = $::os_service_default,
# DEPRECATED PARAMETERS
$heat_watch_server_url = undef,
) {
include heat::deps
if $heat_watch_server_url {
warning('heat_watch_server_url has no effect and will be removed in a future release.')
}
# Validate Heat Engine AES key
# must be either 16, 24, or 32 bytes long
# https://bugs.launchpad.net/heat/+bug/1415887

View File

@ -0,0 +1,4 @@
---
deprecations:
- |
The heat::engine::heat_watch_server_url parameter has been removed.