@granite-js/pulumi-aws 0.1.22 → 0.1.23-next.10
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.
- package/CHANGELOG.md +50 -0
- package/README.md +3 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @granite-js/pulumi-aws
|
|
2
2
|
|
|
3
|
+
## 0.1.23-next.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix
|
|
8
|
+
|
|
9
|
+
## 0.1.23-next.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- tollback
|
|
14
|
+
|
|
15
|
+
## 0.1.23-next.8
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- router
|
|
20
|
+
|
|
21
|
+
## 0.1.23-next.7
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- fix
|
|
26
|
+
|
|
27
|
+
## 0.1.23-next.6
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- test
|
|
32
|
+
|
|
33
|
+
## 0.1.23-next.5
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- temp
|
|
38
|
+
|
|
39
|
+
## 0.1.23-next.4
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- test
|
|
44
|
+
|
|
45
|
+
## 0.1.23-next.3
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- test
|
|
50
|
+
|
|
51
|
+
## 0.1.23-next.0
|
|
52
|
+
|
|
3
53
|
## 0.1.22
|
|
4
54
|
|
|
5
55
|
## 0.1.21
|
package/README.md
CHANGED
|
@@ -6,8 +6,7 @@ A Pulumi package for managing React Native CDN infrastructure on AWS.
|
|
|
6
6
|
|
|
7
7
|
Follow the official Pulumi installation guide to install the Pulumi CLI:
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
- [Pulumi Installation Guide](https://www.pulumi.com/docs/iac/download-install/)
|
|
11
10
|
|
|
12
11
|
## Pulumi Configuration
|
|
13
12
|
|
|
@@ -37,8 +36,8 @@ import { ReactNativeBundleCDN } from '@granite-js/pulumi-aws';
|
|
|
37
36
|
const config = new pulumi.Config();
|
|
38
37
|
|
|
39
38
|
const reactNativeCdn = new ReactNativeBundleCDN('myReactNativeBundleCDN', {
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
bucketName: config.require('bucketName'),
|
|
40
|
+
region: config.require('region'),
|
|
42
41
|
});
|
|
43
42
|
|
|
44
43
|
// Print to CLi
|
|
@@ -52,7 +51,6 @@ pulumi config set bucketName your-bucket-name
|
|
|
52
51
|
pulumi config set region us-west-2
|
|
53
52
|
```
|
|
54
53
|
|
|
55
|
-
|
|
56
54
|
## AWS Credentials Setup
|
|
57
55
|
|
|
58
56
|
Configure your AWS credentials for Pulumi by exporting your AWS credentials as environment variables:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@granite-js/pulumi-aws",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.23-next.10",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@aws-sdk/client-cloudfront": "^3.812.0",
|
|
63
|
-
"@granite-js/deployment-manager": "0.1.
|
|
64
|
-
"@granite-js/utils": "0.1.
|
|
63
|
+
"@granite-js/deployment-manager": "0.1.23-next.10",
|
|
64
|
+
"@granite-js/utils": "0.1.23-next.10",
|
|
65
65
|
"@pulumi/aws": "^6.80.0",
|
|
66
66
|
"@pulumi/pulumi": "^3.170.0",
|
|
67
67
|
"@types/aws-lambda": "^8.10.149",
|