List stacks
List stacks within the given command path.
tkm stacks list [command-path] [--output <format>]
command-path
- Command path to select which stacks to list.
- Optional, by default, Takomo lists all stacks.
--output <format>
- Print the command result using this format
- Supported values:
text
,json
,yaml
These are the minimum IAM permissions required to run this command.
Statement:
- Sid: Stacks
Effect: Allow
Action: cloudformation:DescribeStacks
Resource: "*"
# IAM permissions needed only if command roles are used.
# Specify Resource to restrict access to specific roles.
- Sid: IAM
Effect: Allow
Action: sts:AssumeRole
Resource: "*"
List all stacks:
tkm stacks list
List stacks within the given command path:
tkm stacks list /prod
Last modified 1yr ago