api_gateway_domain - Add TLS1.2 and TLS1.3 security policies - #2431
Open
ichekaldin wants to merge 2 commits into
Open
api_gateway_domain - Add TLS1.2 and TLS1.3 security policies#2431ichekaldin wants to merge 2 commits into
ichekaldin wants to merge 2 commits into
Conversation
Docs Build 📝Thank you for contribution!✨ The docsite for this PR is available for download as an artifact from this run: You can compare to the docs for the File changes:
Click to see the diff comparison.NOTE: only file modifications are shown here. New and deleted files are excluded. diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_domain_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_domain_module.html
index 164af22..33fcd07 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_domain_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_domain_module.html
@@ -315,6 +315,16 @@ see <a class="reference internal" href="#ansible-collections-community-aws-api-g
<td><div class="ansible-option-cell"><p>Set allowed TLS versions through AWS defined policies. Currently only <code class="docutils literal notranslate"><span class="pre">TLS_1_0</span></code> and <code class="docutils literal notranslate"><span class="pre">TLS_1_2</span></code> are available.</p>
<p class="ansible-option-line"><strong class="ansible-option-choices">Choices:</strong></p>
<ul class="simple">
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS12_2018_EDGE"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS12_PFS_2025_EDGE"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_2_2021_06"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_2_FIPS_PFS_PQ_2025_09"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_2_PQ_2025_09"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_3_2025_09"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_1_3_FIPS_2025_09"</span></code></p></li>
+<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"SecurityPolicy_TLS13_2025_EDGE"</span></code></p></li>
<li><p><code class="ansible-option-choices-entry docutils literal notranslate"><span class="pre">"TLS_1_0"</span></code></p></li>
<li><p><code class="ansible-option-default-bold docutils literal notranslate"><strong><span class="pre">"TLS_1_2"</span></strong></code> <span class="ansible-option-choices-default-mark">← (default)</span></p></li>
</ul>
|
Contributor
|
Build succeeded. ✔️ ansible-galaxy-importer SUCCESS in 4m 57s (non-voting) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SUMMARY
AWS recently introduced additional security policies for custom domain names used by API Gateways:
https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-security-policies-list.html https://docs.aws.amazon.com/boto3/latest/reference/services/apigateway/client/create_domain_name.html
This pull request adds the newly added policies to the list of available options:
SecurityPolicy_TLS12_2018_EDGESecurityPolicy_TLS12_PFS_2025_EDGESecurityPolicy_TLS13_1_2_2021_06SecurityPolicy_TLS13_1_2_FIPS_PFS_PQ_2025_09SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09SecurityPolicy_TLS13_1_2_PQ_2025_09SecurityPolicy_TLS13_1_3_2025_09SecurityPolicy_TLS13_1_3_FIPS_2025_09SecurityPolicy_TLS13_2025_EDGEISSUE TYPE
COMPONENT NAME
api_gateway_domain
ADDITIONAL INFORMATION