@granite-js/pulumi-aws 0.1.22 → 0.1.23-next.0

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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # @granite-js/pulumi-aws
2
2
 
3
+ ## 0.1.23-next.0
4
+
3
5
  ## 0.1.22
4
6
 
5
7
  ## 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
- * [Pulumi Installation Guide](https://www.pulumi.com/docs/iac/download-install/)
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
- bucketName: config.require('bucketName'),
41
- region: config.require('region')
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.22",
4
+ "version": "0.1.23-next.0",
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.22",
64
- "@granite-js/utils": "0.1.22",
63
+ "@granite-js/deployment-manager": "0.1.23-next.0",
64
+ "@granite-js/utils": "0.1.23-next.0",
65
65
  "@pulumi/aws": "^6.80.0",
66
66
  "@pulumi/pulumi": "^3.170.0",
67
67
  "@types/aws-lambda": "^8.10.149",