好吧,我知道已经一年了,但是对于仍在试图弄清楚这里的人来说,这是详细的解决方案,
因此,您需要运行以下命令来获取当前区域中的所有参数:
aws ssm get-parameters-by-path --path "/" --recursive --with-decryption --region eu-west-2
你会得到一个JSON
格式化的响应。只需复制响应并将其粘贴到文件中(*.txt
文件然后将其重命名为*.json
)。您拥有包含所有当前参数的 JSON 文件
我在此处将该代码发布到 git 存储库中。克隆后克隆该存储库,在此处添加所需的区域:
const ssm = new AWS.SSM({
apiVersion: '2014-11-06';,
region: 'eu-west-2'; // add your destination region here.
});
和你的json
文件:const { Parameters } = await require('<YOUR JSON FILE>.json')
;
然后通过运行命令安装npm
包npm install
并通过命令运行脚本npm start