尝试创建一个可重用的函数,最多可以使用4个参数(尽管解决方案应该是任意的)。我希望zip使用AWS CloudFormation的参数,这样如果我没有将位置参数传递给 update_stack ,它就不会包含在 CF_ARGS中< / em>的
##
# Update the stack with the given template
# @param: stack_name
# @param: template_body
# @param: [tags]
# @param: [parameters]
##
update_stack() {
# Handle optional func parameters
CF_PARAMS=("--stack-name" "--template-body" "--tags" "--parameters")
# Only include a param if we have a value supplied as an argument. (+1 to ignore script name)
CF_ARGS=($(for i in "${!CF_PARAMS[@]}"; do j=$(($i+1)); if [ -n "${!j}" ]; then echo "${CF_PARAMS[$i]} ${!j}"; fi; done))
# Should make the call as "aws cloudformation create-stack --stack-name $1 --template-body $2"
# If $3 or $4 are not supplied then it should not add them to CFG_ARGS
aws cloudformation create-stack "${CFG_ARGS[@]}"
}
我认为 CF_ARGS 构建工作按预期工作我只是不知道如何在bash函数调用中apply参数和我的Google技能如何找到解决方案失败了。请帮忙!
谢谢, 亚历
PS。我从 awscli 获得的错误是(可能是双引号?):
usage: aws [options] <command> <subcommand> [<subcommand> ...] [parameters]
To see help text, you can run:
aws help
aws <command> help
aws <command> <subcommand> help
aws: error: argument --stack-name is required
编辑(1):
感谢@Barmar的第一个解决方案。这让我想到了这个错误:
Unknown options: Description:, Handles, Authentication, &, Access, permissions, Resources:, ##, #, Policies, ##, PolicyDevelopers:, Type:, AWS::IAM::Policy, Properties:, PolicyName:, Developers-cf, #, @todo:, Remove, suffix, PolicyDocument:, Version:, "2012-10-17", Statement:, -, Effect:, Allow, NotAction:, -, iam:*, -, sts:AssumeRole, ...
&#34; - template-body&#34;参数是一个多行字符串(确切地说是YAML文件),无论如何要反复引用每个参数? :/
答案 0 :(得分:1)
您将CF_ARGS
设置为单个字符串,而不是数组。你需要在它周围包裹另一组括号来获得一个数组。
CF_ARGS=($(for i in "${!CF_PARAMS[@]}"; do j=$(($i+1)); if [ -n "${!j}" ]; then echo "${CF_PARAMS[$i]} ${!j}"; fi; done))
为了使for
循环中的每一行输出都作为单个参数处理,您可以将IFS
设置为仅包含换行符:
IFS=$'\n'
CF_ARGS=($(for i in "${!CF_PARAMS[@]}"; do j=$(($i+1)); if [ -n "${!j}" ]; then echo "${CF_PARAMS[$i]} ${!j}"; fi; done))