cdk-private-s3-hosting 0.0.0__tar.gz → 0.0.1__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.
- {cdk_private_s3_hosting-0.0.0/src/cdk_private_s3_hosting.egg-info → cdk_private_s3_hosting-0.0.1}/PKG-INFO +17 -1
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/README.md +16 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/setup.py +2 -2
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk-private-s3-hosting/__init__.py +16 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk-private-s3-hosting/_jsii/__init__.py +2 -2
- cdk_private_s3_hosting-0.0.1/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.1.jsii.tgz +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1/src/cdk_private_s3_hosting.egg-info}/PKG-INFO +17 -1
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk_private_s3_hosting.egg-info/SOURCES.txt +1 -1
- cdk_private_s3_hosting-0.0.0/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.0.jsii.tgz +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/LICENSE +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/MANIFEST.in +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/pyproject.toml +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/setup.cfg +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk-private-s3-hosting/py.typed +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk_private_s3_hosting.egg-info/dependency_links.txt +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk_private_s3_hosting.egg-info/requires.txt +0 -0
- {cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk_private_s3_hosting.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-private-s3-hosting
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.1
|
4
4
|
Summary: CDK Construct for a private frontend hosting S3 bucket
|
5
5
|
Home-page: https://github.com/badmintoncryer/cdk-private-s3-hosting.git
|
6
6
|
Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
|
@@ -34,10 +34,26 @@ You can use this construct for a enterprise use case where you want to host a st
|
|
34
34
|
|
35
35
|
Original idea is from [this blog post](https://aws.amazon.com/jp/blogs/networking-and-content-delivery/hosting-internal-https-static-websites-with-alb-s3-and-privatelink/).
|
36
36
|
|
37
|
+
[](https://constructs.dev/packages/cdk-private-s3-hosting)
|
38
|
+
[](https://open.vscode.dev/badmintoncryer/cdk-private-s3-hosting)
|
39
|
+
[](https://badge.fury.io/js/cdk-private-s3-hosting)
|
40
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/build.yml)
|
41
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/release.yml)
|
42
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
43
|
+
[](https://www.npmjs.com/package/cdk-private-s3-hosting)
|
44
|
+
|
37
45
|
## Architecture
|
38
46
|
|
39
47
|

|
40
48
|
|
49
|
+
## Installation
|
50
|
+
|
51
|
+
You can install the package via npm:
|
52
|
+
|
53
|
+
```sh
|
54
|
+
npm install cdk-private-s3-hosting
|
55
|
+
```
|
56
|
+
|
41
57
|
## Usage
|
42
58
|
|
43
59
|
To create a private S3 bucket and an ALB with a listener rule that forwards requests to the S3 bucket, you can use the following code:
|
@@ -6,10 +6,26 @@ You can use this construct for a enterprise use case where you want to host a st
|
|
6
6
|
|
7
7
|
Original idea is from [this blog post](https://aws.amazon.com/jp/blogs/networking-and-content-delivery/hosting-internal-https-static-websites-with-alb-s3-and-privatelink/).
|
8
8
|
|
9
|
+
[](https://constructs.dev/packages/cdk-private-s3-hosting)
|
10
|
+
[](https://open.vscode.dev/badmintoncryer/cdk-private-s3-hosting)
|
11
|
+
[](https://badge.fury.io/js/cdk-private-s3-hosting)
|
12
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/build.yml)
|
13
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/release.yml)
|
14
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
15
|
+
[](https://www.npmjs.com/package/cdk-private-s3-hosting)
|
16
|
+
|
9
17
|
## Architecture
|
10
18
|
|
11
19
|

|
12
20
|
|
21
|
+
## Installation
|
22
|
+
|
23
|
+
You can install the package via npm:
|
24
|
+
|
25
|
+
```sh
|
26
|
+
npm install cdk-private-s3-hosting
|
27
|
+
```
|
28
|
+
|
13
29
|
## Usage
|
14
30
|
|
15
31
|
To create a private S3 bucket and an ALB with a listener rule that forwards requests to the S3 bucket, you can use the following code:
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "cdk-private-s3-hosting",
|
8
|
-
"version": "0.0.
|
8
|
+
"version": "0.0.1",
|
9
9
|
"description": "CDK Construct for a private frontend hosting S3 bucket",
|
10
10
|
"license": "Apache-2.0",
|
11
11
|
"url": "https://github.com/badmintoncryer/cdk-private-s3-hosting.git",
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
26
26
|
],
|
27
27
|
"package_data": {
|
28
28
|
"cdk-private-s3-hosting._jsii": [
|
29
|
-
"cdk-private-s3-hosting@0.0.
|
29
|
+
"cdk-private-s3-hosting@0.0.1.jsii.tgz"
|
30
30
|
],
|
31
31
|
"cdk-private-s3-hosting": [
|
32
32
|
"py.typed"
|
{cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk-private-s3-hosting/__init__.py
RENAMED
@@ -7,10 +7,26 @@ You can use this construct for a enterprise use case where you want to host a st
|
|
7
7
|
|
8
8
|
Original idea is from [this blog post](https://aws.amazon.com/jp/blogs/networking-and-content-delivery/hosting-internal-https-static-websites-with-alb-s3-and-privatelink/).
|
9
9
|
|
10
|
+
[](https://constructs.dev/packages/cdk-private-s3-hosting)
|
11
|
+
[](https://open.vscode.dev/badmintoncryer/cdk-private-s3-hosting)
|
12
|
+
[](https://badge.fury.io/js/cdk-private-s3-hosting)
|
13
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/build.yml)
|
14
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/release.yml)
|
15
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
16
|
+
[](https://www.npmjs.com/package/cdk-private-s3-hosting)
|
17
|
+
|
10
18
|
## Architecture
|
11
19
|
|
12
20
|

|
13
21
|
|
22
|
+
## Installation
|
23
|
+
|
24
|
+
You can install the package via npm:
|
25
|
+
|
26
|
+
```sh
|
27
|
+
npm install cdk-private-s3-hosting
|
28
|
+
```
|
29
|
+
|
14
30
|
## Usage
|
15
31
|
|
16
32
|
To create a private S3 bucket and an ALB with a listener rule that forwards requests to the S3 bucket, you can use the following code:
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
33
33
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
35
35
|
"cdk-private-s3-hosting",
|
36
|
-
"0.0.
|
36
|
+
"0.0.1",
|
37
37
|
__name__[0:-6],
|
38
|
-
"cdk-private-s3-hosting@0.0.
|
38
|
+
"cdk-private-s3-hosting@0.0.1.jsii.tgz",
|
39
39
|
)
|
40
40
|
|
41
41
|
__all__ = [
|
cdk_private_s3_hosting-0.0.1/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.1.jsii.tgz
ADDED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-private-s3-hosting
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.1
|
4
4
|
Summary: CDK Construct for a private frontend hosting S3 bucket
|
5
5
|
Home-page: https://github.com/badmintoncryer/cdk-private-s3-hosting.git
|
6
6
|
Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
|
@@ -34,10 +34,26 @@ You can use this construct for a enterprise use case where you want to host a st
|
|
34
34
|
|
35
35
|
Original idea is from [this blog post](https://aws.amazon.com/jp/blogs/networking-and-content-delivery/hosting-internal-https-static-websites-with-alb-s3-and-privatelink/).
|
36
36
|
|
37
|
+
[](https://constructs.dev/packages/cdk-private-s3-hosting)
|
38
|
+
[](https://open.vscode.dev/badmintoncryer/cdk-private-s3-hosting)
|
39
|
+
[](https://badge.fury.io/js/cdk-private-s3-hosting)
|
40
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/build.yml)
|
41
|
+
[](https://github.com/badmintoncryer/cdk-private-s3-hosting/actions/workflows/release.yml)
|
42
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
43
|
+
[](https://www.npmjs.com/package/cdk-private-s3-hosting)
|
44
|
+
|
37
45
|
## Architecture
|
38
46
|
|
39
47
|

|
40
48
|
|
49
|
+
## Installation
|
50
|
+
|
51
|
+
You can install the package via npm:
|
52
|
+
|
53
|
+
```sh
|
54
|
+
npm install cdk-private-s3-hosting
|
55
|
+
```
|
56
|
+
|
41
57
|
## Usage
|
42
58
|
|
43
59
|
To create a private S3 bucket and an ALB with a listener rule that forwards requests to the S3 bucket, you can use the following code:
|
@@ -6,7 +6,7 @@ setup.py
|
|
6
6
|
src/cdk-private-s3-hosting/__init__.py
|
7
7
|
src/cdk-private-s3-hosting/py.typed
|
8
8
|
src/cdk-private-s3-hosting/_jsii/__init__.py
|
9
|
-
src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.
|
9
|
+
src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.1.jsii.tgz
|
10
10
|
src/cdk_private_s3_hosting.egg-info/PKG-INFO
|
11
11
|
src/cdk_private_s3_hosting.egg-info/SOURCES.txt
|
12
12
|
src/cdk_private_s3_hosting.egg-info/dependency_links.txt
|
cdk_private_s3_hosting-0.0.0/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.0.jsii.tgz
DELETED
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cdk_private_s3_hosting-0.0.0 → cdk_private_s3_hosting-0.0.1}/src/cdk-private-s3-hosting/py.typed
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|