Puppet Class: aem_stack_manager::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
Stack Manager. 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_stack_manager
class. You
can change values for it's parameters using Hiera.
Copyright © 2017 Shine Solutions Group, unless otherwise noted.
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
# File 'manifests/application_properties.pp', line 135
class aem_stack_manager::application_properties (
String $path,
String $owner,
String $group,
String $mode,
Variant[String, Undef] $aem_stop_sleep_seconds = 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_region = undef,
Variant[String, Undef] $aws_sqs_queue_name = undef,
Variant[String, Undef] $command_check_crx_quickstart_process = undef,
Variant[String, Undef] $command_check_oak_run_process = undef,
Variant[String, Undef] $command_check_snapshot_process = undef,
Variant[String, Undef] $command_deploy_artifact = undef,
Variant[String, Undef] $command_deploy_artifacts = undef,
Variant[String, Undef] $command_ec2_metadata = undef,
Variant[String, Undef] $command_enter_standby_by_component = undef,
Variant[String, Undef] $command_enter_standby_by_identity = undef,
Variant[String, Undef] $command_exit_standby_by_component = undef,
Variant[String, Undef] $command_exit_standby_by_identity = undef,
Variant[String, Undef] $command_export_package = undef,
Variant[String, Undef] $command_import_package = undef,
Variant[String, Undef] $command_offline_compaction_by_identity = undef,
Variant[String, Undef] $command_offline_compaction_for_author = undef,
Variant[String, Undef] $command_offline_snapshot = undef,
Variant[String, Undef] $command_paired_instance = undef,
Variant[String, Undef] $command_promote_author = undef,
Variant[String, Undef] $command_shell = undef,
Variant[String, Undef] $command_stack_components = undef,
Variant[String, Undef] $command_start_aem = undef,
Variant[String, Undef] $command_stop_aem = undef,
Variant[String, Undef] $command_timeout = undef,
Variant[String, Undef] $command_wait_until_ready = undef,
Variant[String, Undef] $offline_snapshot_minimum_publish_instances = undef,
Variant[String, Undef] $server_port = undef,
) {
file { $path:
ensure => file,
owner => $owner,
group => $group,
mode => $mode,
content => template('aem_stack_manager/application_properties.erb'),
}
}
|