Puppet Class: aem_orchestrator::application_properties
- Defined in:
- manifests/application_properties.pp
Summary
Write the `application.properties` file.Overview
This class writes the application.properties
file for the AEM
Orchestrator. It is auto-generated and should not be modified by hand.
Documentation for each of the properties can be found in the example
application.properties
from which it is generated. (see below)
Note: This is an internal class that shouldn't be used
directly. It is included by the aem_orchestrator
class. You
can change values for it's parameters using Hiera.
Copyright © 2017-2021 Shine Solutions Group Group, unless otherwise noted.
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'manifests/application_properties.pp', line 177
class aem_orchestrator::application_properties (
String $path,
String $owner,
String $group,
String $mode,
Variant[String, Undef] $aem_client_api_connection_timeout = undef,
Variant[String, Undef] $aem_client_api_debug = undef,
Variant[String, Undef] $aem_credentials_orchestrator_password = undef,
Variant[String, Undef] $aem_credentials_orchestrator_username = undef,
Variant[String, Undef] $aem_credentials_replicator_password = undef,
Variant[String, Undef] $aem_credentials_replicator_username = undef,
Variant[String, Undef] $aem_credentials_s3_file_uri = undef,
Variant[String, Undef] $aem_credentials_s3_use = undef,
Variant[String, Undef] $aem_flush_log_level = undef,
Variant[String, Undef] $aem_port_author = undef,
Variant[String, Undef] $aem_port_author_dispatcher = undef,
Variant[String, Undef] $aem_port_publish = undef,
Variant[String, Undef] $aem_port_publish_dispatcher = undef,
Variant[String, Undef] $aem_protocol_author = undef,
Variant[String, Undef] $aem_protocol_author_dispatcher = undef,
Variant[String, Undef] $aem_protocol_publish = undef,
Variant[String, Undef] $aem_protocol_publish_dispatcher = undef,
Variant[String, Undef] $aem_relaxed_ssl_enable = undef,
Variant[String, Undef] $aem_replication_log_level = undef,
Variant[String, Undef] $aem_reverse_replication_enable = undef,
Variant[String, Undef] $aem_reverse_replication_log_level = undef,
Variant[String, Undef] $aem_reverse_replication_transport_uri_postfix = undef,
Variant[String, Undef] $aws_client_connection_timeout = undef,
Variant[String, Undef] $aws_client_max_error_retry = undef,
Variant[String, Undef] $aws_client_protocol = undef,
Variant[String, Undef] $aws_client_proxy_host = undef,
Variant[String, Undef] $aws_client_proxy_port = undef,
Variant[String, Undef] $aws_client_use_proxy = undef,
Variant[String, Undef] $aws_cloudformation_auto_scale_group_logical_id_author_dispatcher = undef,
Variant[String, Undef] $aws_cloudformation_auto_scale_group_logical_id_publish = undef,
Variant[String, Undef] $aws_cloudformation_auto_scale_group_logical_id_publish_dispatcher = undef,
Variant[String, Undef] $aws_cloudformation_load_balancer_logical_id_author = undef,
Variant[String, Undef] $aws_cloudformation_sns_logical_id_event_topic = undef,
Variant[String, Undef] $aws_cloudformation_stack_name_author = undef,
Variant[String, Undef] $aws_cloudformation_stack_name_author_dispatcher = undef,
Variant[String, Undef] $aws_cloudformation_stack_name_messaging = undef,
Variant[String, Undef] $aws_cloudformation_stack_name_publish = undef,
Variant[String, Undef] $aws_cloudformation_stack_name_publish_dispatcher = undef,
Variant[String, Undef] $aws_device_name = undef,
Variant[String, Undef] $aws_region = undef,
Variant[String, Undef] $aws_snapshot_tags = undef,
Variant[String, Undef] $aws_sqs_queue_name = undef,
Variant[String, Undef] $endpoints_enabled = undef,
Variant[String, Undef] $endpoints_health_enabled = undef,
Variant[String, Undef] $endpoints_info_enabled = undef,
Variant[String, Undef] $http_client_relaxed_ssl_enable = undef,
Variant[String, Undef] $startup_wait_for_author_elb_back_off_period = undef,
Variant[String, Undef] $startup_wait_for_author_elb_max_attempts = undef,
) {
file { $path:
ensure => file,
owner => $owner,
group => $group,
mode => $mode,
content => template('aem_orchestrator/application_properties.erb'),
}
}
|