我有一个 bash 脚本,可以确定某人的 aws 密钥是否超过 90 天。如果是,脚本会向他们发送一封电子邮件,其中包含有关如何轮换密钥的信息。
如果没有密钥超过 90 天,我希望脚本打印一条语句,因此不会发送电子邮件。
对于每个用户的密钥,我有两个 if 独立 if 语句:
if [ "$key1dtSec" -lt "$taSec" ]; then
printf "%s created on %s\\nThis key is %s days old and needs to be replaced.\\nAn email will be sent." "$user_access_key1" "$key1_date_created." "$key1AgeDays"
echo -e "$template1" | /usr/bin/mail --append="Content-type: text/html" -s "AWS Key Rotation Needed for $user_name in $aws_key" "$email_address"
echo; echo
fi
if [ "$key2dtSec" -lt "$taSec" ]; then
printf "%s created on %s.\\nThis key is %s days old and needs to be replaced.\\nAn email will be sent." "$user_access_key2" "$key2_date_created" "$key2AgeDays"
echo -e "$template2" | /usr/bin/mail --append="Content-type: text/html" -s "AWS Key Rotation Needed for $user_name in $aws_key" "$email_address"
echo; echo
fi
key1dtSec
并且key2dtSec
是以秒为单位的 aws 密钥的年龄。taSec
设置为 90 天前。
如果我使用一个elif
语句并且只对两个键使用一个 if/then 语句,那么只有第一个判断一个键是否超过 90 天的 if 语句才会被执行。
我怎样才能这样写:
- 如果第一个密钥超过 90 天并发送电子邮件。
- 如果第二个密钥超过 90 天,则会发送一封电子邮件。
- 如果没有密钥超过 90 天,则会打印一条消息,说明没有密钥超过 90 天。