繁体   English   中英

AWS SSM 运行命令:使用 Cloudformation 模板中的当前帐号

[英]AWS SSM Run command : use the current account number from a Cloudformation Template

我有一个 CloudFormation 模板,它创建了一组 SSM 命令来管理我的 Linux EC2 实例。 此命令必须有权访问我的 AWS 帐号才能执行某些任务。

在我的 CloudFormation 模板上,我做了:

AWSTemplateFormatVersion: '2010-09-09'
Description: Sample SSM commands

MyCommand1:
  Type: AWS::SSM::Document
  Properties: 
    DocumentType: Command
      Content: 
        schemaVersion: "2.2"
        parameters: {}
        mainSteps: 
          - action: aws:runShellScript 
            name : command1
            inputs: 
              runCommand:
                - echo "this command run on the selected EC2 instance" && echo "You are running this on account {{global:ACCOUNT_ID}}"

Outputs:
    Command1ID:
        Description: MyCommand1
        Value: !Ref  MyCommand1

此模板安装该功能,我可以从 SSM Web 控制台运行它。

但是 {{global:ACCOUNT_ID}} 不值我的帐号。 它的值是字符串“{{global:ACCOUNT_ID}}”。 所以我认为这不是从 SSM 命令使用全局变量的好语法。

因此,在阅读此处的文档https://docs.aws.amazon.com/systems-manager/latest/userguide/walkthrough-cli.html 后,我尝试仅通过 CLI 进行测试(以快速测试其他语法):

$> sh_command_id=$(aws ssm send-command --instance-ids "i-0cb0c0ea8ef7339f1" --document-name "AWS-RunShellScript" --parameters commands='echo You are running this on account {{global:ACCOUNT_ID}}' --output text --query "Command.CommandId")

但命令失败,出现解析错误Error parsing parameter '--parameters': Expected: ',', received: '}' for input

在 SSM "runCommand" 操作中使用 {{global:*}} 事物的正确语法是什么?

您可以通过使用Fn::Sub函数来实现这一点:

- !Sub 'echo "this command run on the selected EC2 instance" && echo "You are running this on account ${AWS::AccountId}"'

您将无法使用ACCOUNT_ID的内置变量。 使用 SSM,您正在实例上运行命令,但此命令无法识别 ACCOUNT_ID。 基于云形成模板,我假设您在基于 *ix 的系统上运行它。

一种方法是在您的实际命令中使用它:

ACCOUNT_ID=`curl -s http://169.254.169.254/latest/dynamic/instance-identity/document | grep accountId| awk '{print $3}'|sed 's/"//g'|sed 's/,//g'` && echo "this command run on the selected EC2 instance" && echo "You are running this on account ${ACCOUNT_ID}"

这使用ec2 实例元数据来计算帐户 ID。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM