Skip to content

Commit

Permalink
Bump version up to 5.19.0.1 . - Add aem.truststore.enable_deletion_be…
Browse files Browse the repository at this point in the history
…fore_creation configuration

- Upgrade AEM AWS Stack Provisioner to 5.11.0.1
  • Loading branch information
cliffano committed May 14, 2023
1 parent 8e5a71f commit a10a0eb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 5.19.0.1 - 2023-05-14
### Added
- Add aem.truststore.enable_deletion_before_creation configuration

### Changed
- Upgrade AEM AWS Stack Provisioner to 5.11.0.1

## 5.19.0 - 2022-11-22

## 5.18.0 - 2022-10-26
Expand Down
3 changes: 2 additions & 1 deletion conf/ansible/inventory/group_vars/apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ aem:
# Parameters for managing AEM Truststore
truststore:
enable_creation: false
enable_deletion_before_creation: false
enable_saml_certificate_upload: false
password:
publish:
Expand Down Expand Up @@ -160,7 +161,7 @@ s3:
create_bucket_flag: 'true'

library:
aem_aws_stack_provisioner_version: 5.11.0
aem_aws_stack_provisioner_version: 5.11.0.1
aem_orchestrator_version: 3.0.1
aem_password_reset_version: 1.1.0
oak_run_version: 1.8.3
Expand Down
1 change: 1 addition & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ These configurations are applicable for both AEM Full-Set and Consolidated archi
| aem.author.jmxremote.port | AEM Author's [JMX](https://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html) remote port. | Optional | 59182 |
| aem.publish.jmxremote.port | AEM Publish's [JMX](https://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html) remote port. | Optional | 59182 |
| aem.truststore.enable_creation | If set to true, AEM Global Truststore will be created for AEM Author | Optional | false |
| aem.truststore.enable_deletion_before_creation | If set to true, AEM Global Truststore will be deleted first before it is created for AEM Author. This is only relevant if `aem.truststore.enable_creation` is set to true | Optional | false |
| aem.truststore.password | AEM Global Truststore password | Optional | false |

### AEM Full-Set specific configuration properties:
Expand Down
1 change: 1 addition & 0 deletions templates/ansible/stack-provisioner-hieradata.j2
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ common::authorizable_keystore::enable_certificate_chain_upload: {{ aem.authoriza

# Truststore parameters
common::truststore::enable_creation: {{ aem.truststore.enable_creation }}
common::truststore::enable_deletion_before_creation: {{ aem.truststore.enable_deletion_before_creation }}
common::truststore::enable_migration: {{ reconfiguration.enable_truststore_migration }}
common::truststore::password: {{ aem.truststore.password }}

Expand Down

0 comments on commit a10a0eb

Please sign in to comment.