@pulumi/aws 6.41.0 → 6.42.0-alpha.1718749934
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/cloudfront/publicKey.d.ts +3 -3
- package/ecs/service.d.ts +3 -3
- package/package.json +2 -2
|
@@ -59,7 +59,7 @@ export declare class PublicKey extends pulumi.CustomResource {
|
|
|
59
59
|
*/
|
|
60
60
|
readonly etag: pulumi.Output<string>;
|
|
61
61
|
/**
|
|
62
|
-
* The name for the public key. By default generated by this provider.
|
|
62
|
+
* The name for the public key. By default generated by this provider. Note: Do not set if using the key's id in another resource (e.g. KeyGroup) since it will result in a dependency error from AWS. Instead, it is recommended to use Pulumi autonaming by leaving this property unset (default behavior) or set the `namePrefix` property to allow the provider to autoname the resource.
|
|
63
63
|
*/
|
|
64
64
|
readonly name: pulumi.Output<string>;
|
|
65
65
|
/**
|
|
@@ -98,7 +98,7 @@ export interface PublicKeyState {
|
|
|
98
98
|
*/
|
|
99
99
|
etag?: pulumi.Input<string>;
|
|
100
100
|
/**
|
|
101
|
-
* The name for the public key. By default generated by this provider.
|
|
101
|
+
* The name for the public key. By default generated by this provider. Note: Do not set if using the key's id in another resource (e.g. KeyGroup) since it will result in a dependency error from AWS. Instead, it is recommended to use Pulumi autonaming by leaving this property unset (default behavior) or set the `namePrefix` property to allow the provider to autoname the resource.
|
|
102
102
|
*/
|
|
103
103
|
name?: pulumi.Input<string>;
|
|
104
104
|
/**
|
|
@@ -121,7 +121,7 @@ export interface PublicKeyArgs {
|
|
|
121
121
|
*/
|
|
122
122
|
encodedKey: pulumi.Input<string>;
|
|
123
123
|
/**
|
|
124
|
-
* The name for the public key. By default generated by this provider.
|
|
124
|
+
* The name for the public key. By default generated by this provider. Note: Do not set if using the key's id in another resource (e.g. KeyGroup) since it will result in a dependency error from AWS. Instead, it is recommended to use Pulumi autonaming by leaving this property unset (default behavior) or set the `namePrefix` property to allow the provider to autoname the resource.
|
|
125
125
|
*/
|
|
126
126
|
name?: pulumi.Input<string>;
|
|
127
127
|
/**
|
package/ecs/service.d.ts
CHANGED
|
@@ -252,7 +252,7 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
252
252
|
*/
|
|
253
253
|
readonly taskDefinition: pulumi.Output<string | undefined>;
|
|
254
254
|
/**
|
|
255
|
-
* Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `"plantimestamp()"`.
|
|
255
|
+
* Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `"plantimestamp()"`. When using the triggers property you also need to set the forceNewDeployment property to True.
|
|
256
256
|
*/
|
|
257
257
|
readonly triggers: pulumi.Output<{
|
|
258
258
|
[key: string]: string;
|
|
@@ -395,7 +395,7 @@ export interface ServiceState {
|
|
|
395
395
|
*/
|
|
396
396
|
taskDefinition?: pulumi.Input<string>;
|
|
397
397
|
/**
|
|
398
|
-
* Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `"plantimestamp()"`.
|
|
398
|
+
* Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `"plantimestamp()"`. When using the triggers property you also need to set the forceNewDeployment property to True.
|
|
399
399
|
*/
|
|
400
400
|
triggers?: pulumi.Input<{
|
|
401
401
|
[key: string]: pulumi.Input<string>;
|
|
@@ -522,7 +522,7 @@ export interface ServiceArgs {
|
|
|
522
522
|
*/
|
|
523
523
|
taskDefinition?: pulumi.Input<string>;
|
|
524
524
|
/**
|
|
525
|
-
* Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `"plantimestamp()"`.
|
|
525
|
+
* Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `"plantimestamp()"`. When using the triggers property you also need to set the forceNewDeployment property to True.
|
|
526
526
|
*/
|
|
527
527
|
triggers?: pulumi.Input<{
|
|
528
528
|
[key: string]: pulumi.Input<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.42.0-alpha.1718749934",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"pulumi": {
|
|
27
27
|
"resource": true,
|
|
28
28
|
"name": "aws",
|
|
29
|
-
"version": "6.
|
|
29
|
+
"version": "6.42.0-alpha.1718749934"
|
|
30
30
|
}
|
|
31
31
|
}
|