You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: 'AWS CloudFormation Template to create an EC2 instance
5
+
**WARNING** This template creates an Amazon EC2 instance and an Elastic IP Address.
6
+
You will be billed for the AWS resources used if you create a stack from this template.'
7
+
8
+
Parameters:
9
+
Namespace:
10
+
Type: String
11
+
Description: An environment name that will be prefixed to resource names
12
+
S3Mounts:
13
+
Type: String
14
+
Description: A JSON array of objects with name, bucket, and prefix properties used to mount data
15
+
IamPolicyDocument:
16
+
Type: String
17
+
Description: The IAM policy to be associated with the launched workstation
18
+
EnvironmentInstanceFiles:
19
+
Type: String
20
+
Description: >-
21
+
An S3 URI (starting with "s3://") that specifies the location of files to be copied to
22
+
the environment instance, including any bootstrap scripts
23
+
InstanceType:
24
+
Description: Choose the instance type e.g t3.small (2vCPU , 2GiB RAM) t3.medium (2vCPU , 4GiB RAM), t3.large (2vCPU, 8GiB RAM).
25
+
Type: String
26
+
Default: t3.small
27
+
AllowedValues: [t3.small, t3.medium, t3.large]
28
+
ConstraintDescription: must be a valid EC2 instance type.
29
+
EBSVolumeSize:
30
+
Description: The initial size of the volume (in GBs) EBS will use for storage.
31
+
Type: Number
32
+
Default: 8
33
+
KeyPair:
34
+
Description: Name of an existing EC2 KeyPair to enable SSH access to the instance. If no key pairs exist, please create one from the button next to the dropdown. Please contact your Administrator if you are unable to create one.
35
+
Type: AWS::EC2::KeyPair::KeyName
36
+
ConstraintDescription: must be the name of an existing EC2 KeyPair.
37
+
AllowedSSHLocation:
38
+
Description: The IP address range that can be used to SSH to the EC2 instances
Description: Select the availability zone in which to create the instance. If you plan to attach a secondary volume to the instance, create this instance in the same AvailabilityZone as the volume you created.
0 commit comments