0

有没有办法使用 Powershell 在 AWS Parameter store 上创建新的安全键/值对?是使用 AWSCLI 的唯一解决方法吗?

4

1 回答 1

0

创建 Systems Manager 参数(Windows PowerShell 工具)- AWS Systems Manager

Write-SSMParameter `
    -Name "parameter-name" `
    -Value "parameter-value" `
    -Type "SecureString"  `
    -KeyId "a KMS CMK ID, a KMS CMK ARN, an alias name, or an alias ARN"

另请参阅:使用 Powershell 的 AWS Systems Manager 参数存储

于 2020-05-07T22:32:11.743 回答