This file contains 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
# 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" { |
This file contains 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
FROM httpd:2.4.49-alpine | |
COPY ./vulnerable-httpd.conf /usr/local/apache2/conf/httpd.conf |
OlderNewer