diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index d4fdba8d..b3930c06 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1,5 +1,31 @@ --- releases: + 1.10.0: + release_date: "2021-05-04" + changes: + release_summary: | + Authentication, authentication on the wall, Who has Access to Them All? + + New modules allow Sensu Go users to configure authentication within + their Ansible playbooks. The users can authenticate via external + authentication providers such as Lightweight Directory Access Protocol (LDAP), + Active Directory (AD), or OpenID Connect 1.0 protocol (OIDC). + minor_changes: + - Add modules for managing Sensu Go authentication providers. + modules: + - name: ad_auth_provider + description: Manage Sensu AD authentication provider + namespace: "" + - name: ldap_auth_provider + description: Manage Sensu LDAP authentication provider + namespace: "" + - name: oidc_auth_provider + description: Manage Sensu OIDC authentication provider + namespace: "" + - name: auth_provider_info + description: List Sensu authentication providers + namespace: "" + 1.9.4: release_date: "2021-03-30" changes: diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 9829fb81..2105fe58 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,19 @@ Release notes ============= +Version 1.10.0 -- Authentication, authentication on the wall, Who has Access to Them All? +----------------------------------------------------------------------------------------- + +New modules allow Sensu Go users to configure authentication within +their Ansible playbooks. The users can authenticate via external +authentication providers such as Lightweight Directory Access Protocol (LDAP), +Active Directory (AD), or OpenID Connect 1.0 protocol (OIDC). + +**New features:** + +* Add modules for managing Sensu Go authentication providers. + + Version 1.9.4 -- Opening Windows for real ----------------------------------------- diff --git a/galaxy.yml b/galaxy.yml index cd6ac766..c7975e45 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: sensu name: sensu_go -version: 1.9.4 +version: 1.10.0 authors: - Paul Arthur (@flowerysong)