cdk-code-server 0.0.2__tar.gz → 0.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-code-server
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: CDK Construct for a VSCode Server development environment on EC2
5
5
  Home-page: https://github.com/badmintoncryer/cdk-code-server.git
6
6
  Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
@@ -32,8 +32,6 @@ Requires-Dist: typeguard~=2.13.3
32
32
 
33
33
  This is a CDK Construct for creating a VSCode server on an Amazon Linux EC2 instance.
34
34
 
35
- You can access to Visual Studio Code server by browser and start development easily.
36
-
37
35
  [![View on Construct Hub](https://constructs.dev/badge?package=cdk-code-server)](https://constructs.dev/packages/cdk-code-server)
38
36
 
39
37
  [![Open in Visual Studio Code](https://img.shields.io/static/v1?logo=visualstudiocode&label=&message=Open%20in%20Visual%20Studio%20Code&labelColor=2c2c32&color=007acc&logoColor=007acc)](https://open.vscode.dev/badmintoncryer/cdk-code-server)
@@ -45,6 +43,11 @@ You can access to Visual Studio Code server by browser and start development eas
45
43
 
46
44
  ![CDK VSCode Server Construct](./images/code-server.png)
47
45
 
46
+ You can easily access Visual Studio Code Server through your browser and start development.
47
+
48
+ In the EC2 security group's inbound rules, communication from the Internet is not allowed, ensuring secure access to the VSCode server.
49
+ Additionally, by passing the IAM policy to be attached to the EC2 instance as a property, you can grant appropriate permissions for AWS access within VSCode.
50
+
48
51
  ## Usage
49
52
 
50
53
  Install the package:
@@ -2,8 +2,6 @@
2
2
 
3
3
  This is a CDK Construct for creating a VSCode server on an Amazon Linux EC2 instance.
4
4
 
5
- You can access to Visual Studio Code server by browser and start development easily.
6
-
7
5
  [![View on Construct Hub](https://constructs.dev/badge?package=cdk-code-server)](https://constructs.dev/packages/cdk-code-server)
8
6
 
9
7
  [![Open in Visual Studio Code](https://img.shields.io/static/v1?logo=visualstudiocode&label=&message=Open%20in%20Visual%20Studio%20Code&labelColor=2c2c32&color=007acc&logoColor=007acc)](https://open.vscode.dev/badmintoncryer/cdk-code-server)
@@ -15,6 +13,11 @@ You can access to Visual Studio Code server by browser and start development eas
15
13
 
16
14
  ![CDK VSCode Server Construct](./images/code-server.png)
17
15
 
16
+ You can easily access Visual Studio Code Server through your browser and start development.
17
+
18
+ In the EC2 security group's inbound rules, communication from the Internet is not allowed, ensuring secure access to the VSCode server.
19
+ Additionally, by passing the IAM policy to be attached to the EC2 instance as a property, you can grant appropriate permissions for AWS access within VSCode.
20
+
18
21
  ## Usage
19
22
 
20
23
  Install the package:
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cdk-code-server",
8
- "version": "0.0.2",
8
+ "version": "0.0.4",
9
9
  "description": "CDK Construct for a VSCode Server development environment on EC2",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/badmintoncryer/cdk-code-server.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "cdk_code-server._jsii": [
29
- "cdk-code-server@0.0.2.jsii.tgz"
29
+ "cdk-code-server@0.0.4.jsii.tgz"
30
30
  ],
31
31
  "cdk_code-server": [
32
32
  "py.typed"
@@ -3,8 +3,6 @@ r'''
3
3
 
4
4
  This is a CDK Construct for creating a VSCode server on an Amazon Linux EC2 instance.
5
5
 
6
- You can access to Visual Studio Code server by browser and start development easily.
7
-
8
6
  [![View on Construct Hub](https://constructs.dev/badge?package=cdk-code-server)](https://constructs.dev/packages/cdk-code-server)
9
7
 
10
8
  [![Open in Visual Studio Code](https://img.shields.io/static/v1?logo=visualstudiocode&label=&message=Open%20in%20Visual%20Studio%20Code&labelColor=2c2c32&color=007acc&logoColor=007acc)](https://open.vscode.dev/badmintoncryer/cdk-code-server)
@@ -16,6 +14,11 @@ You can access to Visual Studio Code server by browser and start development eas
16
14
 
17
15
  ![CDK VSCode Server Construct](./images/code-server.png)
18
16
 
17
+ You can easily access Visual Studio Code Server through your browser and start development.
18
+
19
+ In the EC2 security group's inbound rules, communication from the Internet is not allowed, ensuring secure access to the VSCode server.
20
+ Additionally, by passing the IAM policy to be attached to the EC2 instance as a property, you can grant appropriate permissions for AWS access within VSCode.
21
+
19
22
  ## Usage
20
23
 
21
24
  Install the package:
@@ -19,7 +19,7 @@ import constructs._jsii
19
19
  import open_constructs_aws_cdk._jsii
20
20
 
21
21
  __jsii_assembly__ = jsii.JSIIAssembly.load(
22
- "cdk-code-server", "0.0.2", __name__[0:-6], "cdk-code-server@0.0.2.jsii.tgz"
22
+ "cdk-code-server", "0.0.4", __name__[0:-6], "cdk-code-server@0.0.4.jsii.tgz"
23
23
  )
24
24
 
25
25
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-code-server
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: CDK Construct for a VSCode Server development environment on EC2
5
5
  Home-page: https://github.com/badmintoncryer/cdk-code-server.git
6
6
  Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
@@ -32,8 +32,6 @@ Requires-Dist: typeguard~=2.13.3
32
32
 
33
33
  This is a CDK Construct for creating a VSCode server on an Amazon Linux EC2 instance.
34
34
 
35
- You can access to Visual Studio Code server by browser and start development easily.
36
-
37
35
  [![View on Construct Hub](https://constructs.dev/badge?package=cdk-code-server)](https://constructs.dev/packages/cdk-code-server)
38
36
 
39
37
  [![Open in Visual Studio Code](https://img.shields.io/static/v1?logo=visualstudiocode&label=&message=Open%20in%20Visual%20Studio%20Code&labelColor=2c2c32&color=007acc&logoColor=007acc)](https://open.vscode.dev/badmintoncryer/cdk-code-server)
@@ -45,6 +43,11 @@ You can access to Visual Studio Code server by browser and start development eas
45
43
 
46
44
  ![CDK VSCode Server Construct](./images/code-server.png)
47
45
 
46
+ You can easily access Visual Studio Code Server through your browser and start development.
47
+
48
+ In the EC2 security group's inbound rules, communication from the Internet is not allowed, ensuring secure access to the VSCode server.
49
+ Additionally, by passing the IAM policy to be attached to the EC2 instance as a property, you can grant appropriate permissions for AWS access within VSCode.
50
+
48
51
  ## Usage
49
52
 
50
53
  Install the package:
@@ -6,7 +6,7 @@ setup.py
6
6
  src/cdk_code-server/__init__.py
7
7
  src/cdk_code-server/py.typed
8
8
  src/cdk_code-server/_jsii/__init__.py
9
- src/cdk_code-server/_jsii/cdk-code-server@0.0.2.jsii.tgz
9
+ src/cdk_code-server/_jsii/cdk-code-server@0.0.4.jsii.tgz
10
10
  src/cdk_code_server.egg-info/PKG-INFO
11
11
  src/cdk_code_server.egg-info/SOURCES.txt
12
12
  src/cdk_code_server.egg-info/dependency_links.txt
File without changes