我在 EC2 资源示例 json 中运行 shell 活动以创建 EC2 资源。
{
"id" : "MyEC2Resource",
"type" : "Ec2Resource",
"actionOnTaskFailure" : "terminate",
"actionOnResourceFailure" : "retryAll",
"maximumRetries" : "1",
"instanceType" : "m5.large",
"securityGroupIds" : [
"sg-12345678",
"sg-12345678"
],
"subnetId": "subnet-12345678",
"associatePublicIpAddress": "true",
"keyPair" : "my-key-pair"
}
上面的 json 正在使用数据管道创建 EC2 资源,但是当我在 AWS 控制台中打开 EC2 资源时,我想为上述资源命名,它将显示 EC2 资源名称和其他属性,目前它显示为空白。