cfn

CloudFormation

ManagementAWS
General

General information about the service.

Description

AWS CloudFormation models and provisions AWS resources using templates.

Service Namespace

AWS::CloudFormation::Stack

ARN Pattern

arn:aws:cloudformation:{region}:{account}:stack/{stack-name}/{stack-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

cfn-

Length

1-128

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_cloudformation_stack" "main" {
2 name = "cfn-${var.environment}"
3 template_url = var.template_url
4 capabilities = ["CAPABILITY_IAM"]
5}
Utilities

Utilities to support app deployment or configuration.