我正在尝试将变量传递到 json 文件中。
这是我的脚本:
#!/bin/sh
for BucketName in `aws s3api list-buckets | jq '.Buckets[].Name' | sed 's/"//g'`;
do
if [ "$(aws s3api put-bucket-policy --bucket $BucketName --policy file://policy.json)" ]; then
echo "Passed"
elso
echo "Failed"
fi
done
file://policy.json
我需要在 for 循环中传递一个调用的变量BucketName
。
这是我的 json 文件:
{
"Sid": ,
"Effect": "Deny",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::"'$BucketName'"/*",
"Condition": {
"Bool": {
"aws:SecureTransport": "false"
}
}
}
任何想法?