Skip to content

Commit 10ba4f7

Browse files
authored
Merge pull request #7 from QualiSystems/dev
release 1.0.0
2 parents 1de21b9 + b073819 commit 10ba4f7

File tree

3 files changed

+144
-71
lines changed

3 files changed

+144
-71
lines changed

docs/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ The following table describes attributes that are unique to this shell and are n
6868
|MAX STORAGE IOPS|numeric|The max number of I/O operations per second that the volume can support. For Provisioned IOPS (SSD) volumes, you can provision up to 30 IOPS per GiB. If left empty the default in the AMI will be used. For example 240.|
6969
|NETWORKS IN USE|string|Reserved networks that will be excluded when allocating Sandbox networks. Should include at least the management network. The syntax is comma separated CIDRs. For example: 10.0.0.0/24, 10.1.0.0/16, 172.31.0.0/24.|
7070
|INSTANCE TYPE|string|The AWS EC2 instance type. The instance type determines the CPU, memory and networking capacity of the instance. For example: "t2.large".|
71-
|VPC MODE|lookup|Every sandbox with AWS apps deploys a VPC to AWS. This setting determines how the sandbox VPC will chose a CIDR block. In __DYNAMIC__ mode, the CIDR block is chosen by Cloudshell Server. In __STATIC__ mode, the CIDR block for all sandboxes allocated will be taken from VPC CIDR attribute on AWS cloud provider. In __SHARED__ mode, the shared VPC is created with a pre-defined CIDR block.|
71+
|VPC MODE|lookup|Every sandbox with AWS apps deploys a VPC to AWS. This setting determines how the sandbox VPC will chose a CIDR block. In __DYNAMIC__ mode, the CIDR block is chosen by Cloudshell Server. In __STATIC__ mode, the CIDR block for all sandboxes allocated will be taken from VPC CIDR attribute on AWS cloud provider. Select __SHARED__ to indicate that the cloud provider resource will deploy to the shared VPC defined in __Shared VPC ID__.|
7272
|STATIC VPC CIDR|string|The CIDR used for sandbox VPC when __VPC MODE__ is __STATIC__.|
7373
|SHARED VPC ID|string|V(Mandatory for Shared VPC mode) Shared VPC’s ID. For example: “vpc-0bf24b1ebrd855e30”.|
7474
|Shared VPC Role ARN| string|(Mandatory for Shared VPC mode) Role created by the CloudFormation process with read/write permissions in the AWS account. This role is used by CloudShell to operate in the shared VPC. To find the role, open the main CloudFormation stack, click the __Outputs__ tab and copy the __SharedRoleARN__.|
7575
|TRANSIT GATEWAY ID|string|(Mandatory for Shared VPC mode) ID of the transit gateway. To find the transit gateway id, open the CloudFormation stack that has “VPCNAT” in its name, click the __Outputs__ tab and copy the __TGWid__ value.|
7676
|ADDITIONAL MANAGEMENT NETWORKS|string|Networks to be allowed to interact with all sandboxes. This is used for allowing connectivity to AWS resources outside the Management VPC. The syntax is comma separated CIDRs. For example, "10.0.0.0/24,10.1.0.0/16,172.31.0.0/24".|
77-
|VPN GATEWAY ID|string|(Mandatory for Shared VPC mode) ID of the gateway to use. Leave empty if the __UseTransitGateway__ attribute was enabled in the CloudFormation, specify the VPN gateway ID if the attribute was set to “False”. To find the VPN gateway ID, open the CloudFormation stack that has “VPCNAT” in its name, click the __Outputs__ tab and copy the __VPNGWid__ value.|
77+
|VPN GATEWAY ID|string|(Mandatory for Shared VPC mode) ID of the gateway to use. Leave empty if the __UseTransitGateway__ attribute was enabled in the CloudFormation, specify the VPN gateway ID if the attribute was set to “False”. To find the VPN gateway ID, open the shared VPC's CloudFormation stack, click the __Outputs__ tab and copy the __VPNGWid__ value.|
7878
|VPN CIDR|string|(Mandatory for Shared VPC mode if VPN Gateway ID is defined) Comma-separated list of CIDRs in the local network to be used to VPN to the shared VPC. For example: "10.1.0.0/24,10.3.0.0/16".|
7979

8080

@@ -172,14 +172,14 @@ This section explains how to create a new Cloud Provider Resource using the shel
172172
- __VPC MODE__: Every sandbox with AWS apps deploys a VPC to AWS. This setting determines how the sandbox VPC will chose a CIDR block. Options are:
173173
- __DYNAMIC__: The CIDR block is chosen by Cloudshell Server. In other words, CloudShell deploys a new VPC with a dedicated CIDR for every sandbox.
174174
- __STATIC__: The CIDR block for all sandboxes allocated will be taken from VPC CIDR attribute on AWS cloud provider.
175-
- __SHARED__: (Mandatory for Shared VPC mode) The shared VPC is created with a pre-defined CIDR block.
175+
- __SHARED__: Indicates that the cloud provider resource will deploy to the shared VPC defined in __Shared VPC ID__.
176176
- __STATIC VPC CIDR__: The CIDR used for sandbox VPC when __VPC Mode__ is __Static__.
177177
- __SHARED VPC ID__: (Mandatory for Shared VPC mode) Shared VPC’s ID. For example: “vpc-0bf24b1ebrd855e30”.
178178
- __SHARED VPC ROLE ARN__: (Mandatory for Shared VPC mode) Role created by the CloudFormation process with read/write permissions in the AWS account. This role is used by CloudShell to operate in the shared VPC. To find the role, open the main CloudFormation stack, click the __Outputs__ tab and copy the __SharedRoleARN__.
179179
- __TRANSIT GATEWAY ID__: (Mandatory for Shared VPC mode) ID of the transit gateway. To find the transit gateway id, open the CloudFormation stack that has “VPCNAT” in its name, click the __Outputs__ tab and copy the __TGWid__ value.
180180
- __ADDITIONAL MANAGEMENT NETWORKS__: Networks to be allowed to interact with all sandboxes. This is used for allowing connectivity to AWS resources outside the Management VPC.
181181
<br>The syntax is comma separated CIDRs. For example, "10.0.0.0/24,10.1.0.0/16,172.31.0.0/24".
182-
- __VPN GATEWAY ID__: (Mandatory for Shared VPC mode) ID of the gateway to use. Leave empty if the __UseTransitGateway__ attribute was enabled in the CloudFormation, specify the VPN gateway ID if the attribute was set to “False”. To find the VPN gateway ID, open the CloudFormation stack that has “VPCNAT” in its name, click the __Outputs__ tab and copy the __VPNGWid__ value.
182+
- __VPN GATEWAY ID__: (Mandatory for Shared VPC mode) ID of the gateway to use. Required to connect the shared VPC's sandbox subnets to the VPN gateway. CloudShell does this by creating a route between the specified VPN gateway and the connected subnet within the VPC CIDR. To find the role, open the shared VPC CloudFormation stack, click the __Outputs__ tab and copy the __VPNGWid__ value.
183183
- __VPN CIDR__: (Mandatory for Shared VPC mode if VPN Gateway ID is defined) Comma-separated list of CIDRs in the local network to be used to VPN to the shared VPC. For example: "10.1.0.0/24,10.3.0.0/16".
184184

185185
6. Click **Continue**.

0 commit comments

Comments
 (0)