[Lightsail]インスタンスをCLIで作成するには
【まとめると】
★aws lightsail create-instances
★名前、AZ、設計図(BLUEPRINT) 、インスタンスプラン指定するよろし
【コマンド】
$ aws lightsail create-instances \
> --instance-names test2 \
> --availability-zone ap-northeast-1c \
> --blueprint-id wordpress \
> --bundle-id nano_1_0
{
"operations": [
{
"id": "d387293a-70d8-4594-9f25-39da889e96bf",
"resourceName": "test2",
"resourceType": "Instance",
"createdAt": "2022-06-30T13:05:43.367000+00:00",
"location": {
"availabilityZone": "ap-northeast-1c",
"regionName": "ap-northeast-1"
},
"isTerminal": false,
"operationType": "CreateInstance",
"status": "Started",
"statusChangedAt": "2022-06-30T13:05:43.367000+00:00"
}
]
}
無事できた。