Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions roles/beats/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,11 @@ beats_tls_ca_content: ""

# @var beats_tls_remote_src:description: Source location for external cert files. false = files on Ansible controller, true = files already on managed node
beats_tls_remote_src: false

# @var beats_cert_will_expire_soon:description: >
# Force renewal of the Beats client certificate on the next run.
# Normally flipped to true automatically by the cert_check_expiry task
# when the certificate is within `beats_cert_expiration_buffer` days of expiry;
# set to true from a playbook to force renewal regardless of buffer.
# @end
beats_cert_will_expire_soon: false
2 changes: 0 additions & 2 deletions roles/beats/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
---
# Internal state — do not set manually
beats_cert_will_expire_soon: false
8 changes: 8 additions & 0 deletions roles/elasticsearch/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,3 +243,11 @@ elasticsearch_logrotate_rotate: 32
elasticsearch_logrotate_size: 50M
# @var elasticsearch_logrotate_maxage:description: Delete rotated files older than this many days
elasticsearch_logrotate_maxage: 370

# @var elasticsearch_cert_will_expire_soon:description: >
# Force renewal of the Elasticsearch node certificate on the next run.
# Normally flipped to true automatically by the cert_check_expiry task
# when the certificate is within `elasticsearch_cert_expiration_buffer` days of expiry;
# set to true from a playbook to force renewal regardless of buffer.
# @end
elasticsearch_cert_will_expire_soon: false
3 changes: 0 additions & 3 deletions roles/elasticsearch/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ _elasticsearch_managed_keys:

# Internal sentinel values — prevent handler errors on first run.
# These are overwritten by task register output; users must never set them.
# Internal state — do not set manually
elasticsearch_cert_will_expire_soon: false

_elasticsearch_freshstart:
changed: false
_elasticsearch_freshstart_security:
Expand Down
8 changes: 8 additions & 0 deletions roles/elasticstack/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,11 @@ elasticstack_security: true

# @var elasticstack_no_log:description: Suppress sensitive output in Ansible logs. Set to false for debugging
elasticstack_no_log: true

# @var elasticstack_ca_will_expire_soon:description: >
# Force renewal of the CA certificate on the next run.
# Normally flipped to true automatically by the cert_check_expiry task
# when the certificate is within `elasticstack_ca_expiration_buffer` days of expiry;
# set to true from a playbook to force renewal regardless of buffer.
# @end
elasticstack_ca_will_expire_soon: false
2 changes: 0 additions & 2 deletions roles/elasticstack/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
---
# Internal state — do not set manually
elasticstack_ca_will_expire_soon: false
8 changes: 8 additions & 0 deletions roles/kibana/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,11 @@ kibana_sniff_on_connection_fault: false
# xpack.reporting.enabled: false
# @end
kibana_extra_config: {}

# @var kibana_cert_will_expire_soon:description: >
# Force renewal of the Kibana server certificate on the next run.
# Normally flipped to true automatically by the cert_check_expiry task
# when the certificate is within `kibana_cert_expiration_buffer` days of expiry;
# set to true from a playbook to force renewal regardless of buffer.
# @end
kibana_cert_will_expire_soon: false
3 changes: 0 additions & 3 deletions roles/kibana/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
---
# Internal state — do not set manually
kibana_cert_will_expire_soon: false

# Internal sentinel values — prevent handler errors on first run.
# These are overwritten by task register output; users must never set them.
_kibana_freshstart:
Expand Down
8 changes: 8 additions & 0 deletions roles/logstash/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,3 +294,11 @@ logstash_plugins: []
logstash_pipeline_unsafe_shutdown: false
# @var logstash_skip_root_check:description: Skip the Logstash 9.x root user upgrade warning check
logstash_skip_root_check: false

# @var logstash_cert_will_expire_soon:description: >
# Force renewal of the Logstash client certificate on the next run.
# Normally flipped to true automatically by the cert_check_expiry task
# when the certificate is within `logstash_cert_expiration_buffer` days of expiry;
# set to true from a playbook to force renewal regardless of buffer.
# @end
logstash_cert_will_expire_soon: false
3 changes: 0 additions & 3 deletions roles/logstash/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
---
# Internal state — do not set manually
logstash_cert_will_expire_soon: false

# Internal sentinel values — prevent handler errors on first run.
# These are overwritten by task register output; users must never set them.
_logstash_freshstart:
Expand Down
Loading