Retrieves your account's AWS CloudFormation limits.
Such as the maximum number of stacks that you can create in your account:
$ aws cloudformation describe-account-limits
{
"AccountLimits": [
{
"Name": "StackLimit",
"Value": 200
},
{
"Name": "StackOutputsLimit",
"Value": 60
},
{
"Name": "ConcurrentResourcesLimit",
"Value": 2500
}
]
}
Comments
Post a Comment