@pulumi/aws-native 1.56.0 → 1.57.0-alpha.1772551273
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/README.md +19 -5
- package/package.json +3 -3
- package/package.json.dev +2 -2
package/README.md
CHANGED
|
@@ -21,15 +21,17 @@ To learn how to configure credentials refer to the [AWS configuration options](h
|
|
|
21
21
|
|
|
22
22
|
### Dependencies
|
|
23
23
|
|
|
24
|
-
- Go
|
|
25
|
-
-
|
|
24
|
+
- Go (pinned in `.config/mise.toml`)
|
|
25
|
+
- Node.js 20.x
|
|
26
26
|
- Yarn 1.22 or later
|
|
27
|
-
- Python 3.
|
|
28
|
-
- .NET
|
|
27
|
+
- Python 3.11.x
|
|
28
|
+
- .NET 8.x
|
|
29
29
|
- Gradle 7
|
|
30
30
|
- Pulumi CLI and language plugins
|
|
31
31
|
- pulumictl
|
|
32
32
|
|
|
33
|
+
Quick start: `make prepare_local_workspace` installs pinned toolchain versions via `mise`.
|
|
34
|
+
|
|
33
35
|
You can quickly launch a shell environment with all the required dependencies using
|
|
34
36
|
[devbox](https://www.jetpack.io/devbox/):
|
|
35
37
|
|
|
@@ -55,12 +57,24 @@ Add the `bin` folder to your `$PATH` or copy the `bin/pulumi-resource-aws-native
|
|
|
55
57
|
|
|
56
58
|
### Running tests
|
|
57
59
|
|
|
58
|
-
|
|
60
|
+
Fast local verification:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
make verify
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Provider unit tests:
|
|
59
67
|
|
|
60
68
|
```bash
|
|
61
69
|
make test_provider
|
|
62
70
|
```
|
|
63
71
|
|
|
72
|
+
Examples/integration tests (slow):
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
make test
|
|
76
|
+
```
|
|
77
|
+
|
|
64
78
|
### Running an example
|
|
65
79
|
|
|
66
80
|
Navigate to the ECS example and run Pulumi:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws-native",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.57.0-alpha.1772551273",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
18
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws-native 1.
|
|
18
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws-native 1.57.0-alpha.1772551273"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@pulumi/pulumi": "^3.142.0"
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"pulumi": {
|
|
28
28
|
"resource": true,
|
|
29
29
|
"name": "aws-native",
|
|
30
|
-
"version": "1.
|
|
30
|
+
"version": "1.57.0-alpha.1772551273"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws-native",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.57.0-alpha.1772551273",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"pulumi": {
|
|
27
27
|
"resource": true,
|
|
28
28
|
"name": "aws-native",
|
|
29
|
-
"version": "1.
|
|
29
|
+
"version": "1.57.0-alpha.1772551273"
|
|
30
30
|
}
|
|
31
31
|
}
|