这是我的允许某些帐户ID进行部署的配置。
provider "aws" {
#shared_credentials_file = "$HOME/.aws/credentials"
region = "${var.region}"
#profile = "customprofile"
allowed_account_ids=["164*******65"]
}
这工作正常,但是我已经配置了多个帐户,并且我想禁止某些帐户ID,而是每次allowed_acccount_ids
个字段都进行更新。
谢谢。