标签: bash amazon-web-services aws-cli
我尝试在运行bash脚本之前为AWS配置文件设置AWS env变量。
如果这样做:
export profile=$(AWS_PROFILE=name) aws configure list
然后我echo $profile尚未设置个人资料。
echo $profile
答案 0 :(得分:1)
您可以使用:
export AWS_PROFILE=rodney <call script here>
或者,您可以在脚本中指定配置文件:
aws s3 ls --profile rodney