ALIYUN::ECS::JoinSecurityGroup 型は 1 つまたは複数の ECS インスタンスを指定されたセキュリティグループに追加することができます。
構文
{
"Type" : "ALIYUN::ECS::JoinSecurityGroup",
"Properties" : {
"InstanceId" : String,
"InstanceIdList" : List,
"SecurityGroupId" : String
}
}
属性
名前 | 型 | 必須かどうか | 更新の許可 | 説明 | 制約 |
---|---|---|---|---|---|
SecurityGroupId | string | はい | いいえ | セキュリティグループ ID | なし |
InstanceId | string | いいえ | いいえ | セキュリティグループに追加する ECS インスタンスの ID | なし |
InstanceIdList | list | いいえ | はい | セキュリティグループに追加する ECS インスタンスのリスト | なし |
リターン値
Fn :: GetAtt
なし
例
{
"ROSTemplateFormatVersion" : "2015-09-01",
"Resources" : {
"SG": {
"Type": "ALIYUN::ECS::JoinSecurityGroup",
"Properties": {
"SecurityGroupId": "sg-25zwc3se0",
"InstanceIdList": ["i-25zskuabf", "i-25jvzsvr5"]
}
}
}
}