如何向 RDS 集群添加标签

如何向 RDS 集群添加标签

单个 RDS 实例和 RDS 集群之间存在差异,我可以通过 AWS UI 标记 RDS 实例,但似乎无法标记集群。

如何标记 AWS RDS 集群。

答案1

事实证明,这在 AWS 控制台中是不可能的。您必须使用 API:

列表标签:

aws rds list-tags-for-resource --resource-name arn:aws:rds:<region>:<account>:cluster:<cluster_name>

添加键:

aws rds add-tags-to-resource --resource-name arn:aws:rds:<region>:<account>:cluster:<cluster_name> --tags '
[
    {
        "Key": "Name",
        "Value": "MyCluster"
    },
    {
        "Key": "Environment",
        "Value": "dev"
    }
]'

相关内容