Skip to content

Instantly share code, notes, and snippets.

# Ensure the AI services opt-out policy type is enabled on the Organization
resource "aws_organizations_organization" "organization" {
enabled_policy_types = [
# ...
"AISERVICES_OPT_OUT_POLICY"
]
}
# Create the AI opt-out policy
resource "aws_organizations_policy" "ai-optout" {
@christophetd
christophetd / Dockerfile
Created October 8, 2021 08:23
Reproducing CVE-2021-41773 (Apache 2.4.49 and 2.4.50) with Docker
FROM httpd:2.4.49-alpine
COPY ./vulnerable-httpd.conf /usr/local/apache2/conf/httpd.conf