diff --git a/config/artifacts.example/local/saml2023.crt b/config/artifacts.example/local/saml2023.crt new file mode 120000 index 00000000000..3adf05b96cb --- /dev/null +++ b/config/artifacts.example/local/saml2023.crt @@ -0,0 +1 @@ +saml2022.crt \ No newline at end of file diff --git a/config/artifacts.example/local/saml2023.key.enc b/config/artifacts.example/local/saml2023.key.enc new file mode 120000 index 00000000000..35bacae1de4 --- /dev/null +++ b/config/artifacts.example/local/saml2023.key.enc @@ -0,0 +1 @@ +saml2022.key.enc \ No newline at end of file diff --git a/config/initializers/app_artifacts.rb b/config/initializers/app_artifacts.rb index b3e953a78f8..3fb55aacb11 100644 --- a/config/initializers/app_artifacts.rb +++ b/config/initializers/app_artifacts.rb @@ -6,6 +6,8 @@ store.add_artifact(:saml_2021_key, '/%s/saml2021.key.enc') store.add_artifact(:saml_2022_cert, '/%s/saml2022.crt') store.add_artifact(:saml_2022_key, '/%s/saml2022.key.enc') + store.add_artifact(:saml_2023_cert, '/%s/saml2023.crt') + store.add_artifact(:saml_2023_key, '/%s/saml2023.key.enc') store.add_artifact(:oidc_private_key, '/%s/oidc.key') { |k| OpenSSL::PKey::RSA.new(k) } store.add_artifact(:oidc_public_key, '/%s/oidc.pub') { |k| OpenSSL::PKey::RSA.new(k) }