e3591223a0
* Update incidental test aliases. * Rewrite target references for renamed targets. * Add incidental tests to CI. * Update sanity tests for incidental cloud tests. * Initial copy of incidental tests. * Copy contrib files into test. * Update paths in test. * Add support plugins. * Update plugin to work around missing deps. * Update sanity ignores. * Fix matrix entries. * Remove debug echo.
37 lines
750 B
JSON
37 lines
750 B
JSON
{
|
|
"AWSTemplateFormatVersion" : "2010-09-09",
|
|
|
|
"Description" : "Create an Amazon EC2 instance.",
|
|
|
|
"Parameters" : {
|
|
"InstanceType" : {
|
|
"Description" : "EC2 instance type",
|
|
"Type" : "String",
|
|
"Default" : "t3.nano",
|
|
"AllowedValues" : [ "t3.micro", "t3.nano"]
|
|
},
|
|
"ImageId" : {
|
|
"Type" : "String"
|
|
},
|
|
"SubnetId" : {
|
|
"Type" : "String"
|
|
}
|
|
},
|
|
|
|
"Resources" : {
|
|
"EC2Instance" : {
|
|
"Type" : "AWS::EC2::Instance",
|
|
"Properties" : {
|
|
"InstanceType" : { "Ref" : "InstanceType" },
|
|
"ImageId" : { "Ref" : "ImageId" },
|
|
"SubnetId": { "Ref" : "SubnetId" }
|
|
}
|
|
}
|
|
},
|
|
|
|
"Outputs" : {
|
|
"InstanceId" : {
|
|
"Value" : { "Ref" : "EC2Instance" }
|
|
}
|
|
}
|
|
}
|