cdk-private-s3-hosting 0.0.3__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.
Files changed (17) hide show
  1. {cdk_private_s3_hosting-0.0.3/src/cdk_private_s3_hosting.egg-info → cdk_private_s3_hosting-0.0.4}/PKG-INFO +19 -1
  2. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/README.md +18 -0
  3. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/setup.py +2 -2
  4. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/src/cdk-private-s3-hosting/__init__.py +18 -0
  5. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/src/cdk-private-s3-hosting/_jsii/__init__.py +2 -2
  6. cdk_private_s3_hosting-0.0.4/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.4.jsii.tgz +0 -0
  7. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4/src/cdk_private_s3_hosting.egg-info}/PKG-INFO +19 -1
  8. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/src/cdk_private_s3_hosting.egg-info/SOURCES.txt +1 -1
  9. cdk_private_s3_hosting-0.0.3/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.3.jsii.tgz +0 -0
  10. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/LICENSE +0 -0
  11. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/MANIFEST.in +0 -0
  12. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/pyproject.toml +0 -0
  13. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/setup.cfg +0 -0
  14. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/src/cdk-private-s3-hosting/py.typed +0 -0
  15. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/src/cdk_private_s3_hosting.egg-info/dependency_links.txt +0 -0
  16. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/src/cdk_private_s3_hosting.egg-info/requires.txt +0 -0
  17. {cdk_private_s3_hosting-0.0.3 → cdk_private_s3_hosting-0.0.4}/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
3
+ Version: 0.0.4
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>
@@ -114,3 +114,21 @@ After deploying the stack, you can access the website using the `domainName` you
114
114
  ```
115
115
 
116
116
  **Note**: All access to the path pattern `*/` will be redirected to `/index.html`. Therefore, it will function correctly even when the path is set on the frontend and the page is reloaded.
117
+
118
+ ## TLS Certificate
119
+
120
+ If you want to use HTTPS, you need to create a TLS certificate in ACM and pass it to the `certificate` property.
121
+
122
+ ```python
123
+ import * as acm from 'aws-cdk-lib/aws-certificatemanager';
124
+ import { PrivateS3Hosting } from 'cdk-private-s3-hosting';
125
+
126
+ declare const certificate: acm.ICertificate;
127
+
128
+ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
129
+ domainName: 'cryer-nao-domain.com',
130
+ certificate,
131
+ });
132
+ ```
133
+
134
+ Of course, specified domain name (`domainName` and `subDomain`) must be the same as the domain name of the certificate.
@@ -86,3 +86,21 @@ After deploying the stack, you can access the website using the `domainName` you
86
86
  ```
87
87
 
88
88
  **Note**: All access to the path pattern `*/` will be redirected to `/index.html`. Therefore, it will function correctly even when the path is set on the frontend and the page is reloaded.
89
+
90
+ ## TLS Certificate
91
+
92
+ If you want to use HTTPS, you need to create a TLS certificate in ACM and pass it to the `certificate` property.
93
+
94
+ ```python
95
+ import * as acm from 'aws-cdk-lib/aws-certificatemanager';
96
+ import { PrivateS3Hosting } from 'cdk-private-s3-hosting';
97
+
98
+ declare const certificate: acm.ICertificate;
99
+
100
+ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
101
+ domainName: 'cryer-nao-domain.com',
102
+ certificate,
103
+ });
104
+ ```
105
+
106
+ Of course, specified domain name (`domainName` and `subDomain`) must be the same as the domain name of the certificate.
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cdk-private-s3-hosting",
8
- "version": "0.0.3",
8
+ "version": "0.0.4",
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.3.jsii.tgz"
29
+ "cdk-private-s3-hosting@0.0.4.jsii.tgz"
30
30
  ],
31
31
  "cdk-private-s3-hosting": [
32
32
  "py.typed"
@@ -87,6 +87,24 @@ After deploying the stack, you can access the website using the `domainName` you
87
87
  ```
88
88
 
89
89
  **Note**: All access to the path pattern `*/` will be redirected to `/index.html`. Therefore, it will function correctly even when the path is set on the frontend and the page is reloaded.
90
+
91
+ ## TLS Certificate
92
+
93
+ If you want to use HTTPS, you need to create a TLS certificate in ACM and pass it to the `certificate` property.
94
+
95
+ ```python
96
+ import * as acm from 'aws-cdk-lib/aws-certificatemanager';
97
+ import { PrivateS3Hosting } from 'cdk-private-s3-hosting';
98
+
99
+ declare const certificate: acm.ICertificate;
100
+
101
+ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
102
+ domainName: 'cryer-nao-domain.com',
103
+ certificate,
104
+ });
105
+ ```
106
+
107
+ Of course, specified domain name (`domainName` and `subDomain`) must be the same as the domain name of the certificate.
90
108
  '''
91
109
  from pkgutil import extend_path
92
110
  __path__ = extend_path(__path__, __name__)
@@ -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.3",
36
+ "0.0.4",
37
37
  __name__[0:-6],
38
- "cdk-private-s3-hosting@0.0.3.jsii.tgz",
38
+ "cdk-private-s3-hosting@0.0.4.jsii.tgz",
39
39
  )
40
40
 
41
41
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-private-s3-hosting
3
- Version: 0.0.3
3
+ Version: 0.0.4
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>
@@ -114,3 +114,21 @@ After deploying the stack, you can access the website using the `domainName` you
114
114
  ```
115
115
 
116
116
  **Note**: All access to the path pattern `*/` will be redirected to `/index.html`. Therefore, it will function correctly even when the path is set on the frontend and the page is reloaded.
117
+
118
+ ## TLS Certificate
119
+
120
+ If you want to use HTTPS, you need to create a TLS certificate in ACM and pass it to the `certificate` property.
121
+
122
+ ```python
123
+ import * as acm from 'aws-cdk-lib/aws-certificatemanager';
124
+ import { PrivateS3Hosting } from 'cdk-private-s3-hosting';
125
+
126
+ declare const certificate: acm.ICertificate;
127
+
128
+ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
129
+ domainName: 'cryer-nao-domain.com',
130
+ certificate,
131
+ });
132
+ ```
133
+
134
+ Of course, specified domain name (`domainName` and `subDomain`) must be the same as the domain name of the certificate.
@@ -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.3.jsii.tgz
9
+ src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.4.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