@pulumi/awsx 2.10.0 → 2.11.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/README.md +17 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ To use this package, [install the Pulumi CLI](https://www.pulumi.com/docs/get-st
|
|
|
14
14
|
|
|
15
15
|
The AWS Infrastructure package is intended to provide [component](https://www.pulumi.com/docs/intro/concepts/resources/components/) wrappers around many core AWS 'raw' resources to make them easier and more convenient to use. In general, the `@pulumi/awsx` package mirrors the module structure of `@pulumi/aws` (i.e. `@pulumi/awsx/ecs` or `@pulumi/awsx/ec2`). These [components](https://www.pulumi.com/docs/intro/concepts/resources/components/) are designed to take care of much of the redundancy and boilerplate necessary when using the raw AWS resources, while still striving to expose all underlying functionality if needed.
|
|
16
16
|
|
|
17
|
-
The AWS Infrastructure package undergoes constant improvements and additions. While we will strive to maintain backward
|
|
17
|
+
The AWS Infrastructure package undergoes constant improvements and additions. While we will strive to maintain backward compatibility here, we will occasionally make breaks here as appropriate if it helps improve the overall quality of this package.
|
|
18
18
|
|
|
19
19
|
The AWS Infrastructure package exposes many high level abstractions. Including:
|
|
20
20
|
|
|
@@ -77,6 +77,22 @@ dotnet add package Pulumi.Awsx
|
|
|
77
77
|
|
|
78
78
|
The configuration options available for this provider mirror those of the [Pulumi AWS Classic Provider](https://github.com/pulumi/pulumi-aws#configuration)
|
|
79
79
|
|
|
80
|
+
### Custom AWS Provider Versions
|
|
81
|
+
|
|
82
|
+
Pulumi dependency resolution may result in `awsx.*` resources using a different version of the AWS Classic Provider than
|
|
83
|
+
the rest of the program. The version used by default is fixed for each `@pulumi/awsx` release and can be found in
|
|
84
|
+
[package.json](https://github.com/pulumi/pulumi-awsx/blob/master/awsx/package.json#L25). When this becomes problematic,
|
|
85
|
+
for example a newer version of AWS Classic Provider is desired, it can be specified explicitly. For example, in Python:
|
|
86
|
+
|
|
87
|
+
```python
|
|
88
|
+
import pulumi
|
|
89
|
+
import pulumi_aws as aws
|
|
90
|
+
import pulumi_awsx as awsx
|
|
91
|
+
|
|
92
|
+
awsp = aws.Provider("awsp", opts=pulumi.ResourceOptions(version="6.36.0"))
|
|
93
|
+
lb = awsx.lb.ApplicationLoadBalancer("lb", opts=pulumi.ResourceOptions(providers={"aws": awsp}))
|
|
94
|
+
```
|
|
95
|
+
|
|
80
96
|
## Migration from 0.x to 1.0
|
|
81
97
|
|
|
82
98
|
Before version 1, this package only supported components in TypeScript. All the existing components from the 0.x releases are now available in the `classic` namespace. The `classic` namespace will remain until the next major version release but will only receive updates for critical security fixes.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/awsx",
|
|
3
|
-
"version": "v2.
|
|
3
|
+
"version": "v2.11.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
|
16
|
-
"install": "node scripts/install-pulumi-plugin.js resource awsx v2.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource awsx v2.11.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-sdk/client-ecs": "^3.405.0",
|
|
20
|
-
"@pulumi/aws": "^6.
|
|
20
|
+
"@pulumi/aws": "^6.37.1",
|
|
21
21
|
"@pulumi/docker": "^4.5.1",
|
|
22
22
|
"@pulumi/pulumi": "^3.0.0",
|
|
23
23
|
"@types/aws-lambda": "^8.10.23",
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/awsx",
|
|
3
|
-
"version": "v2.
|
|
3
|
+
"version": "v2.11.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@aws-sdk/client-ecs": "^3.405.0",
|
|
19
|
-
"@pulumi/aws": "^6.
|
|
19
|
+
"@pulumi/aws": "^6.37.1",
|
|
20
20
|
"@pulumi/docker": "^4.5.1",
|
|
21
21
|
"@pulumi/pulumi": "^3.0.0",
|
|
22
22
|
"@types/aws-lambda": "^8.10.23",
|