From 3c64ff4e246d3d6bed0770f86baac4e26e4e0f1d Mon Sep 17 00:00:00 2001 From: Danny Schofield Date: Fri, 10 May 2024 12:42:35 -0400 Subject: [PATCH] mintlifydocs: include CloudformationCapabilities in docs --- mintlifydocs/config/organization.mdx | 1 + mintlifydocs/features/Assign-IaC-Blueprints-To-Accounts.mdx | 3 +++ 2 files changed, 4 insertions(+) diff --git a/mintlifydocs/config/organization.mdx b/mintlifydocs/config/organization.mdx index 8dca7e0..5eca4d4 100644 --- a/mintlifydocs/config/organization.mdx +++ b/mintlifydocs/config/organization.mdx @@ -107,6 +107,7 @@ Stacks: Region: # (Optional) What region the stack's resources will be provisioned in. Region can be a comma separated list of regions or "all" to apply to all regions in an account. Workspace: # (Optional) Specify a Terraform workspace to use. CloudformationParameters: # (Optional) A list of parameters to pass into the cloudformation stack. + CloudformationCapabilities: # (Optional) A list of capabilities to pass into the cloudformation stack the only valid values are (CAPABILITY_IAM | CAPABILITY_NAMED_IAM | CAPABILITY_AUTO_EXPAND). ``` ### Example diff --git a/mintlifydocs/features/Assign-IaC-Blueprints-To-Accounts.mdx b/mintlifydocs/features/Assign-IaC-Blueprints-To-Accounts.mdx index 1e47309..d135f59 100644 --- a/mintlifydocs/features/Assign-IaC-Blueprints-To-Accounts.mdx +++ b/mintlifydocs/features/Assign-IaC-Blueprints-To-Accounts.mdx @@ -31,6 +31,8 @@ Organization: CloudformationParameters: - "HashKeyElementName=Painter" - "TableName=test" + CloudformationCapabilities: + - "CAPABILITY_IAM" - Email: safety+ingestion@example.app AccountName: Safety Ingestion Team - Name: Development @@ -58,4 +60,5 @@ Stacks: Region: # (Optional) What region the stack's resources will be provisioned in. Region can be a comma separated list of regions or "all" to apply to all regions in an account. Workspace: # (Optional) Specify a Terraform workspace to use. CloudformationParameters: # (Optional) A list of parameters to pass into the cloudformation stack. + CloudformationCapabilities: # (Optional) A list of capabilities to pass into the cloudformation stack the only valid values are (CAPABILITY_IAM | CAPABILITY_NAMED_IAM | CAPABILITY_AUTO_EXPAND). ```