gpt4 book ai didi

powershell - 使用 AWS PowerShell 向 AWS EC2 实例添加标签?

转载 作者:行者123 更新时间:2023-12-04 16:58:36 30 4
gpt4 key购买 nike

如何使用 Amazon Web Services (AWS) PowerShell 模块向 EC2 实例添加标签(键值对)?

最佳答案

PS 命令

New-EC2Tag -ResourceId $Instances -Tags $Tags

来自 AWS 文档....
$tag = New-Object Amazon.EC2.Model.Tag
$tag.Key = "myTag"
$tag.Value = "myTagValue"

New-EC2Tag -Resource i-12345678 -Tag $tag

关于powershell - 使用 AWS PowerShell 向 AWS EC2 实例添加标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39354864/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com