We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39fc88f commit fe2744dCopy full SHA for fe2744d
services/cloudformation.sh
@@ -4,3 +4,19 @@
4
aws_cloudformation_list_stack_sets() {
5
aws_run_commandline "aws cloudformation list-stack-sets"
6
}
7
+
8
+aws_cloudformation_get_stack_set() {
9
+ aws_run_commandline "\
10
+ aws cloudformation describe-stack-set \
11
+ --stack-set-name ${1:?'stack_set_name is unset or empty'}
12
13
+ "
14
+}
15
16
+aws_cloudformation_stack_info() {
17
18
+ local lhs_stack_set_names=$(aws cloudformation list-stack-sets --query '*[].StackSetName' --output text)
19
+ for stack_set_name in ${lhs_stack_set_names}; do
20
+ aws_cloudformation_get_stack_set ${stack_set_name}
21
+ done
22
0 commit comments