@pulumi/aws 6.61.0-alpha.1732294591 → 6.61.0-alpha.1732585560
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/dataexchange/dataSet.d.ts +3 -3
- package/ec2/instance.d.ts +9 -9
- package/ec2/spotInstanceRequest.d.ts +9 -9
- package/ecs/getService.d.ts +1 -0
- package/ecs/getService.js.map +1 -1
- package/ecs/service.d.ts +24 -0
- package/ecs/service.js +4 -0
- package/ecs/service.js.map +1 -1
- package/fsx/openZfsFileSystem.d.ts +3 -3
- package/iam/groupPolicyAttachmentsExclusive.d.ts +4 -4
- package/iam/groupPolicyAttachmentsExclusive.js +1 -1
- package/iam/rolePolicyAttachmentsExclusive.d.ts +10 -10
- package/iam/rolePolicyAttachmentsExclusive.js +7 -7
- package/iam/userPolicyAttachmentsExclusive.d.ts +4 -4
- package/iam/userPolicyAttachmentsExclusive.js +1 -1
- package/imagebuilder/imagePipeline.d.ts +1 -15
- package/imagebuilder/imagePipeline.js +1 -15
- package/imagebuilder/imagePipeline.js.map +1 -1
- package/organizations/getPolicies.d.ts +2 -2
- package/organizations/getPoliciesForTarget.d.ts +2 -2
- package/organizations/getPolicy.d.ts +1 -1
- package/organizations/organization.d.ts +3 -3
- package/organizations/policy.d.ts +18 -6
- package/organizations/policy.js.map +1 -1
- package/package.json +2 -2
- package/rds/globalCluster.d.ts +8 -0
- package/rds/globalCluster.js +2 -0
- package/rds/globalCluster.js.map +1 -1
- package/rds/index.d.ts +3 -0
- package/rds/index.js +7 -2
- package/rds/index.js.map +1 -1
- package/rds/instanceDesiredState.d.ts +92 -0
- package/rds/instanceDesiredState.js +86 -0
- package/rds/instanceDesiredState.js.map +1 -0
- package/s3/bucketAclV2.d.ts +3 -3
- package/types/input.d.ts +24 -0
- package/types/input.js.map +1 -1
- package/types/output.d.ts +24 -0
- package/types/output.js.map +1 -1
|
@@ -44,7 +44,7 @@ export declare class DataSet extends pulumi.CustomResource {
|
|
|
44
44
|
*/
|
|
45
45
|
readonly arn: pulumi.Output<string>;
|
|
46
46
|
/**
|
|
47
|
-
* The type of asset that is added to a data set. Valid values
|
|
47
|
+
* The type of asset that is added to a data set. Valid values include `API_GATEWAY_API`, `LAKE_FORMATION_DATA_PERMISSION`, `REDSHIFT_DATA_SHARE`, `S3_DATA_ACCESS`, `S3_SNAPSHOT`.
|
|
48
48
|
*/
|
|
49
49
|
readonly assetType: pulumi.Output<string>;
|
|
50
50
|
/**
|
|
@@ -87,7 +87,7 @@ export interface DataSetState {
|
|
|
87
87
|
*/
|
|
88
88
|
arn?: pulumi.Input<string>;
|
|
89
89
|
/**
|
|
90
|
-
* The type of asset that is added to a data set. Valid values
|
|
90
|
+
* The type of asset that is added to a data set. Valid values include `API_GATEWAY_API`, `LAKE_FORMATION_DATA_PERMISSION`, `REDSHIFT_DATA_SHARE`, `S3_DATA_ACCESS`, `S3_SNAPSHOT`.
|
|
91
91
|
*/
|
|
92
92
|
assetType?: pulumi.Input<string>;
|
|
93
93
|
/**
|
|
@@ -118,7 +118,7 @@ export interface DataSetState {
|
|
|
118
118
|
*/
|
|
119
119
|
export interface DataSetArgs {
|
|
120
120
|
/**
|
|
121
|
-
* The type of asset that is added to a data set. Valid values
|
|
121
|
+
* The type of asset that is added to a data set. Valid values include `API_GATEWAY_API`, `LAKE_FORMATION_DATA_PERMISSION`, `REDSHIFT_DATA_SHARE`, `S3_DATA_ACCESS`, `S3_SNAPSHOT`.
|
|
122
122
|
*/
|
|
123
123
|
assetType: pulumi.Input<string>;
|
|
124
124
|
/**
|
package/ec2/instance.d.ts
CHANGED
|
@@ -433,15 +433,15 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
433
433
|
*/
|
|
434
434
|
readonly tenancy: pulumi.Output<string>;
|
|
435
435
|
/**
|
|
436
|
-
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
436
|
+
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
437
437
|
*/
|
|
438
438
|
readonly userData: pulumi.Output<string>;
|
|
439
439
|
/**
|
|
440
|
-
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
440
|
+
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
441
441
|
*/
|
|
442
442
|
readonly userDataBase64: pulumi.Output<string>;
|
|
443
443
|
/**
|
|
444
|
-
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate when set to `true`. Defaults to `false` if not set.
|
|
444
|
+
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
|
|
445
445
|
*/
|
|
446
446
|
readonly userDataReplaceOnChange: pulumi.Output<boolean | undefined>;
|
|
447
447
|
/**
|
|
@@ -694,15 +694,15 @@ export interface InstanceState {
|
|
|
694
694
|
*/
|
|
695
695
|
tenancy?: pulumi.Input<string | enums.ec2.Tenancy>;
|
|
696
696
|
/**
|
|
697
|
-
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
697
|
+
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
698
698
|
*/
|
|
699
699
|
userData?: pulumi.Input<string>;
|
|
700
700
|
/**
|
|
701
|
-
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
701
|
+
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
702
702
|
*/
|
|
703
703
|
userDataBase64?: pulumi.Input<string>;
|
|
704
704
|
/**
|
|
705
|
-
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate when set to `true`. Defaults to `false` if not set.
|
|
705
|
+
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
|
|
706
706
|
*/
|
|
707
707
|
userDataReplaceOnChange?: pulumi.Input<boolean>;
|
|
708
708
|
/**
|
|
@@ -899,15 +899,15 @@ export interface InstanceArgs {
|
|
|
899
899
|
*/
|
|
900
900
|
tenancy?: pulumi.Input<string | enums.ec2.Tenancy>;
|
|
901
901
|
/**
|
|
902
|
-
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
902
|
+
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
903
903
|
*/
|
|
904
904
|
userData?: pulumi.Input<string>;
|
|
905
905
|
/**
|
|
906
|
-
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
906
|
+
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
907
907
|
*/
|
|
908
908
|
userDataBase64?: pulumi.Input<string>;
|
|
909
909
|
/**
|
|
910
|
-
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate when set to `true`. Defaults to `false` if not set.
|
|
910
|
+
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
|
|
911
911
|
*/
|
|
912
912
|
userDataReplaceOnChange?: pulumi.Input<boolean>;
|
|
913
913
|
/**
|
|
@@ -301,15 +301,15 @@ export declare class SpotInstanceRequest extends pulumi.CustomResource {
|
|
|
301
301
|
*/
|
|
302
302
|
readonly tenancy: pulumi.Output<string>;
|
|
303
303
|
/**
|
|
304
|
-
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
304
|
+
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
305
305
|
*/
|
|
306
306
|
readonly userData: pulumi.Output<string>;
|
|
307
307
|
/**
|
|
308
|
-
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
308
|
+
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
309
309
|
*/
|
|
310
310
|
readonly userDataBase64: pulumi.Output<string>;
|
|
311
311
|
/**
|
|
312
|
-
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate when set to `true`. Defaults to `false` if not set.
|
|
312
|
+
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
|
|
313
313
|
*/
|
|
314
314
|
readonly userDataReplaceOnChange: pulumi.Output<boolean | undefined>;
|
|
315
315
|
/**
|
|
@@ -591,15 +591,15 @@ export interface SpotInstanceRequestState {
|
|
|
591
591
|
*/
|
|
592
592
|
tenancy?: pulumi.Input<string>;
|
|
593
593
|
/**
|
|
594
|
-
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
594
|
+
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
595
595
|
*/
|
|
596
596
|
userData?: pulumi.Input<string>;
|
|
597
597
|
/**
|
|
598
|
-
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
598
|
+
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
599
599
|
*/
|
|
600
600
|
userDataBase64?: pulumi.Input<string>;
|
|
601
601
|
/**
|
|
602
|
-
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate when set to `true`. Defaults to `false` if not set.
|
|
602
|
+
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
|
|
603
603
|
*/
|
|
604
604
|
userDataReplaceOnChange?: pulumi.Input<boolean>;
|
|
605
605
|
/**
|
|
@@ -828,15 +828,15 @@ export interface SpotInstanceRequestArgs {
|
|
|
828
828
|
*/
|
|
829
829
|
tenancy?: pulumi.Input<string>;
|
|
830
830
|
/**
|
|
831
|
-
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
831
|
+
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
832
832
|
*/
|
|
833
833
|
userData?: pulumi.Input<string>;
|
|
834
834
|
/**
|
|
835
|
-
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate.
|
|
835
|
+
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
|
|
836
836
|
*/
|
|
837
837
|
userDataBase64?: pulumi.Input<string>;
|
|
838
838
|
/**
|
|
839
|
-
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate when set to `true`. Defaults to `false` if not set.
|
|
839
|
+
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
|
|
840
840
|
*/
|
|
841
841
|
userDataReplaceOnChange?: pulumi.Input<boolean>;
|
|
842
842
|
/**
|
package/ecs/getService.d.ts
CHANGED
package/ecs/getService.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getService.js","sourceRoot":"","sources":["../../ecs/getService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;
|
|
1
|
+
{"version":3,"file":"getService.js","sourceRoot":"","sources":["../../ecs/getService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AAwDD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+BAA+B,EAAE;QAChE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC"}
|
package/ecs/service.d.ts
CHANGED
|
@@ -139,6 +139,10 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
139
139
|
* Information about the CloudWatch alarms. See below.
|
|
140
140
|
*/
|
|
141
141
|
readonly alarms: pulumi.Output<outputs.ecs.ServiceAlarms | undefined>;
|
|
142
|
+
/**
|
|
143
|
+
* ECS automatically redistributes tasks within a service across Availability Zones (AZs) to mitigate the risk of impaired application availability due to underlying infrastructure failures and task lifecycle activities. The valid values are `ENABLED` and `DISABLED`. Defaults to `DISABLED`.
|
|
144
|
+
*/
|
|
145
|
+
readonly availabilityZoneRebalancing: pulumi.Output<string | undefined>;
|
|
142
146
|
/**
|
|
143
147
|
* Capacity provider strategies to use for the service. Can be one or more. These can be updated without destroying and recreating the service only if `forceNewDeployment = true` and not changing from 0 `capacityProviderStrategy` blocks to greater than 0, or vice versa. See below. Conflicts with `launchType`.
|
|
144
148
|
*/
|
|
@@ -266,6 +270,10 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
266
270
|
* Configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume. See below.
|
|
267
271
|
*/
|
|
268
272
|
readonly volumeConfiguration: pulumi.Output<outputs.ecs.ServiceVolumeConfiguration | undefined>;
|
|
273
|
+
/**
|
|
274
|
+
* The VPC Lattice configuration for your service that allows Lattice to connect, secure, and monitor your service across multiple accounts and VPCs. See below.
|
|
275
|
+
*/
|
|
276
|
+
readonly vpcLatticeConfigurations: pulumi.Output<outputs.ecs.ServiceVpcLatticeConfiguration[] | undefined>;
|
|
269
277
|
/**
|
|
270
278
|
* If `true`, this provider will wait for the service to reach a steady state (like [`aws ecs wait services-stable`](https://docs.aws.amazon.com/cli/latest/reference/ecs/wait/services-stable.html)) before continuing. Default `false`.
|
|
271
279
|
*/
|
|
@@ -287,6 +295,10 @@ export interface ServiceState {
|
|
|
287
295
|
* Information about the CloudWatch alarms. See below.
|
|
288
296
|
*/
|
|
289
297
|
alarms?: pulumi.Input<inputs.ecs.ServiceAlarms>;
|
|
298
|
+
/**
|
|
299
|
+
* ECS automatically redistributes tasks within a service across Availability Zones (AZs) to mitigate the risk of impaired application availability due to underlying infrastructure failures and task lifecycle activities. The valid values are `ENABLED` and `DISABLED`. Defaults to `DISABLED`.
|
|
300
|
+
*/
|
|
301
|
+
availabilityZoneRebalancing?: pulumi.Input<string>;
|
|
290
302
|
/**
|
|
291
303
|
* Capacity provider strategies to use for the service. Can be one or more. These can be updated without destroying and recreating the service only if `forceNewDeployment = true` and not changing from 0 `capacityProviderStrategy` blocks to greater than 0, or vice versa. See below. Conflicts with `launchType`.
|
|
292
304
|
*/
|
|
@@ -414,6 +426,10 @@ export interface ServiceState {
|
|
|
414
426
|
* Configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume. See below.
|
|
415
427
|
*/
|
|
416
428
|
volumeConfiguration?: pulumi.Input<inputs.ecs.ServiceVolumeConfiguration>;
|
|
429
|
+
/**
|
|
430
|
+
* The VPC Lattice configuration for your service that allows Lattice to connect, secure, and monitor your service across multiple accounts and VPCs. See below.
|
|
431
|
+
*/
|
|
432
|
+
vpcLatticeConfigurations?: pulumi.Input<pulumi.Input<inputs.ecs.ServiceVpcLatticeConfiguration>[]>;
|
|
417
433
|
/**
|
|
418
434
|
* If `true`, this provider will wait for the service to reach a steady state (like [`aws ecs wait services-stable`](https://docs.aws.amazon.com/cli/latest/reference/ecs/wait/services-stable.html)) before continuing. Default `false`.
|
|
419
435
|
*/
|
|
@@ -427,6 +443,10 @@ export interface ServiceArgs {
|
|
|
427
443
|
* Information about the CloudWatch alarms. See below.
|
|
428
444
|
*/
|
|
429
445
|
alarms?: pulumi.Input<inputs.ecs.ServiceAlarms>;
|
|
446
|
+
/**
|
|
447
|
+
* ECS automatically redistributes tasks within a service across Availability Zones (AZs) to mitigate the risk of impaired application availability due to underlying infrastructure failures and task lifecycle activities. The valid values are `ENABLED` and `DISABLED`. Defaults to `DISABLED`.
|
|
448
|
+
*/
|
|
449
|
+
availabilityZoneRebalancing?: pulumi.Input<string>;
|
|
430
450
|
/**
|
|
431
451
|
* Capacity provider strategies to use for the service. Can be one or more. These can be updated without destroying and recreating the service only if `forceNewDeployment = true` and not changing from 0 `capacityProviderStrategy` blocks to greater than 0, or vice versa. See below. Conflicts with `launchType`.
|
|
432
452
|
*/
|
|
@@ -546,6 +566,10 @@ export interface ServiceArgs {
|
|
|
546
566
|
* Configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume. See below.
|
|
547
567
|
*/
|
|
548
568
|
volumeConfiguration?: pulumi.Input<inputs.ecs.ServiceVolumeConfiguration>;
|
|
569
|
+
/**
|
|
570
|
+
* The VPC Lattice configuration for your service that allows Lattice to connect, secure, and monitor your service across multiple accounts and VPCs. See below.
|
|
571
|
+
*/
|
|
572
|
+
vpcLatticeConfigurations?: pulumi.Input<pulumi.Input<inputs.ecs.ServiceVpcLatticeConfiguration>[]>;
|
|
549
573
|
/**
|
|
550
574
|
* If `true`, this provider will wait for the service to reach a steady state (like [`aws ecs wait services-stable`](https://docs.aws.amazon.com/cli/latest/reference/ecs/wait/services-stable.html)) before continuing. Default `false`.
|
|
551
575
|
*/
|
package/ecs/service.js
CHANGED
|
@@ -152,6 +152,7 @@ class Service extends pulumi.CustomResource {
|
|
|
152
152
|
if (opts.id) {
|
|
153
153
|
const state = argsOrState;
|
|
154
154
|
resourceInputs["alarms"] = state ? state.alarms : undefined;
|
|
155
|
+
resourceInputs["availabilityZoneRebalancing"] = state ? state.availabilityZoneRebalancing : undefined;
|
|
155
156
|
resourceInputs["capacityProviderStrategies"] = state ? state.capacityProviderStrategies : undefined;
|
|
156
157
|
resourceInputs["cluster"] = state ? state.cluster : undefined;
|
|
157
158
|
resourceInputs["deploymentCircuitBreaker"] = state ? state.deploymentCircuitBreaker : undefined;
|
|
@@ -181,11 +182,13 @@ class Service extends pulumi.CustomResource {
|
|
|
181
182
|
resourceInputs["taskDefinition"] = state ? state.taskDefinition : undefined;
|
|
182
183
|
resourceInputs["triggers"] = state ? state.triggers : undefined;
|
|
183
184
|
resourceInputs["volumeConfiguration"] = state ? state.volumeConfiguration : undefined;
|
|
185
|
+
resourceInputs["vpcLatticeConfigurations"] = state ? state.vpcLatticeConfigurations : undefined;
|
|
184
186
|
resourceInputs["waitForSteadyState"] = state ? state.waitForSteadyState : undefined;
|
|
185
187
|
}
|
|
186
188
|
else {
|
|
187
189
|
const args = argsOrState;
|
|
188
190
|
resourceInputs["alarms"] = args ? args.alarms : undefined;
|
|
191
|
+
resourceInputs["availabilityZoneRebalancing"] = args ? args.availabilityZoneRebalancing : undefined;
|
|
189
192
|
resourceInputs["capacityProviderStrategies"] = args ? args.capacityProviderStrategies : undefined;
|
|
190
193
|
resourceInputs["cluster"] = args ? args.cluster : undefined;
|
|
191
194
|
resourceInputs["deploymentCircuitBreaker"] = args ? args.deploymentCircuitBreaker : undefined;
|
|
@@ -214,6 +217,7 @@ class Service extends pulumi.CustomResource {
|
|
|
214
217
|
resourceInputs["taskDefinition"] = args ? args.taskDefinition : undefined;
|
|
215
218
|
resourceInputs["triggers"] = args ? args.triggers : undefined;
|
|
216
219
|
resourceInputs["volumeConfiguration"] = args ? args.volumeConfiguration : undefined;
|
|
220
|
+
resourceInputs["vpcLatticeConfigurations"] = args ? args.vpcLatticeConfigurations : undefined;
|
|
217
221
|
resourceInputs["waitForSteadyState"] = args ? args.waitForSteadyState : undefined;
|
|
218
222
|
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
219
223
|
}
|
package/ecs/service.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../ecs/service.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqHG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../ecs/service.ts"],"names":[],"mappings":"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"}
|
|
@@ -73,7 +73,7 @@ export declare class OpenZfsFileSystem extends pulumi.CustomResource {
|
|
|
73
73
|
*/
|
|
74
74
|
readonly deleteOptions: pulumi.Output<string[] | undefined>;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* Filesystem deployment type. See the [AWS API documentation](https://docs.aws.amazon.com/fsx/latest/APIReference/API_CreateFileSystemOpenZFSConfiguration.html#FSx-Type-CreateFileSystemOpenZFSConfiguration-DeploymentType) for a list of valid values.
|
|
77
77
|
*/
|
|
78
78
|
readonly deploymentType: pulumi.Output<string>;
|
|
79
79
|
/**
|
|
@@ -216,7 +216,7 @@ export interface OpenZfsFileSystemState {
|
|
|
216
216
|
*/
|
|
217
217
|
deleteOptions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
218
218
|
/**
|
|
219
|
-
*
|
|
219
|
+
* Filesystem deployment type. See the [AWS API documentation](https://docs.aws.amazon.com/fsx/latest/APIReference/API_CreateFileSystemOpenZFSConfiguration.html#FSx-Type-CreateFileSystemOpenZFSConfiguration-DeploymentType) for a list of valid values.
|
|
220
220
|
*/
|
|
221
221
|
deploymentType?: pulumi.Input<string>;
|
|
222
222
|
/**
|
|
@@ -347,7 +347,7 @@ export interface OpenZfsFileSystemArgs {
|
|
|
347
347
|
*/
|
|
348
348
|
deleteOptions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* Filesystem deployment type. See the [AWS API documentation](https://docs.aws.amazon.com/fsx/latest/APIReference/API_CreateFileSystemOpenZFSConfiguration.html#FSx-Type-CreateFileSystemOpenZFSConfiguration-DeploymentType) for a list of valid values.
|
|
351
351
|
*/
|
|
352
352
|
deploymentType: pulumi.Input<string>;
|
|
353
353
|
/**
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* ## Import
|
|
4
4
|
*
|
|
5
|
-
* Using `pulumi import`, import exclusive management of
|
|
5
|
+
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `group_name`. For example:
|
|
6
6
|
*
|
|
7
7
|
* ```sh
|
|
8
8
|
* $ pulumi import aws:iam/groupPolicyAttachmentsExclusive:GroupPolicyAttachmentsExclusive example MyGroup
|
|
@@ -29,7 +29,7 @@ export declare class GroupPolicyAttachmentsExclusive extends pulumi.CustomResour
|
|
|
29
29
|
*/
|
|
30
30
|
readonly groupName: pulumi.Output<string>;
|
|
31
31
|
/**
|
|
32
|
-
* A list of
|
|
32
|
+
* A list of managed IAM policy ARNs to be attached to the group. Policies attached to this group but not configured in this argument will be removed.
|
|
33
33
|
*/
|
|
34
34
|
readonly policyArns: pulumi.Output<string[]>;
|
|
35
35
|
/**
|
|
@@ -50,7 +50,7 @@ export interface GroupPolicyAttachmentsExclusiveState {
|
|
|
50
50
|
*/
|
|
51
51
|
groupName?: pulumi.Input<string>;
|
|
52
52
|
/**
|
|
53
|
-
* A list of
|
|
53
|
+
* A list of managed IAM policy ARNs to be attached to the group. Policies attached to this group but not configured in this argument will be removed.
|
|
54
54
|
*/
|
|
55
55
|
policyArns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
56
56
|
}
|
|
@@ -63,7 +63,7 @@ export interface GroupPolicyAttachmentsExclusiveArgs {
|
|
|
63
63
|
*/
|
|
64
64
|
groupName: pulumi.Input<string>;
|
|
65
65
|
/**
|
|
66
|
-
* A list of
|
|
66
|
+
* A list of managed IAM policy ARNs to be attached to the group. Policies attached to this group but not configured in this argument will be removed.
|
|
67
67
|
*/
|
|
68
68
|
policyArns: pulumi.Input<pulumi.Input<string>[]>;
|
|
69
69
|
}
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Import
|
|
10
10
|
*
|
|
11
|
-
* Using `pulumi import`, import exclusive management of
|
|
11
|
+
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `group_name`. For example:
|
|
12
12
|
*
|
|
13
13
|
* ```sh
|
|
14
14
|
* $ pulumi import aws:iam/groupPolicyAttachmentsExclusive:GroupPolicyAttachmentsExclusive example MyGroup
|
|
@@ -2,11 +2,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* > **NOTE:**: To reliably detect drift between customer managed policies listed in this resource and actual policies attached to the role in the cloud, you currently need to run Pulumi with `pulumi up --refresh`. See [#4766](https://github.com/pulumi/pulumi-aws/issues/4766) for tracking making this work with regular `pulumi up`
|
|
4
4
|
*
|
|
5
|
-
* Resource for maintaining exclusive management of
|
|
5
|
+
* Resource for maintaining exclusive management of managed IAM policies assigned to an AWS IAM (Identity & Access Management) role.
|
|
6
6
|
*
|
|
7
|
-
* !> This resource takes exclusive ownership over
|
|
7
|
+
* !> This resource takes exclusive ownership over managed IAM policies attached to a role. This includes removal of managed IAM policies which are not explicitly configured. To prevent persistent drift, ensure any `aws.iam.RolePolicyAttachment` resources managed alongside this resource are included in the `policyArns` argument.
|
|
8
8
|
*
|
|
9
|
-
* > Destruction of this resource means Pulumi will no longer manage reconciliation of the configured policy attachments. It
|
|
9
|
+
* > Destruction of this resource means Pulumi will no longer manage reconciliation of the configured policy attachments. It **will not** detach the configured policies from the role.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -22,11 +22,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
|
24
24
|
*
|
|
25
|
-
* ### Disallow
|
|
25
|
+
* ### Disallow Managed IAM Policies
|
|
26
26
|
*
|
|
27
|
-
* To automatically remove any configured
|
|
27
|
+
* To automatically remove any configured managed IAM policies, set the `policyArns` argument to an empty list.
|
|
28
28
|
*
|
|
29
|
-
* > This will not
|
|
29
|
+
* > This will not **prevent** managed IAM policies from being assigned to a role via Pulumi (or any other interface). This resource enables bringing managed IAM policy assignments into a configured state, however, this reconciliation happens only when `apply` is proactively run.
|
|
30
30
|
*
|
|
31
31
|
* ```typescript
|
|
32
32
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -40,7 +40,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
40
40
|
*
|
|
41
41
|
* ## Import
|
|
42
42
|
*
|
|
43
|
-
* Using `pulumi import`, import exclusive management of
|
|
43
|
+
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `role_name`. For example:
|
|
44
44
|
*
|
|
45
45
|
* ```sh
|
|
46
46
|
* $ pulumi import aws:iam/rolePolicyAttachmentsExclusive:RolePolicyAttachmentsExclusive example MyRole
|
|
@@ -63,7 +63,7 @@ export declare class RolePolicyAttachmentsExclusive extends pulumi.CustomResourc
|
|
|
63
63
|
*/
|
|
64
64
|
static isInstance(obj: any): obj is RolePolicyAttachmentsExclusive;
|
|
65
65
|
/**
|
|
66
|
-
* A list of
|
|
66
|
+
* A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
|
|
67
67
|
*/
|
|
68
68
|
readonly policyArns: pulumi.Output<string[]>;
|
|
69
69
|
/**
|
|
@@ -84,7 +84,7 @@ export declare class RolePolicyAttachmentsExclusive extends pulumi.CustomResourc
|
|
|
84
84
|
*/
|
|
85
85
|
export interface RolePolicyAttachmentsExclusiveState {
|
|
86
86
|
/**
|
|
87
|
-
* A list of
|
|
87
|
+
* A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
|
|
88
88
|
*/
|
|
89
89
|
policyArns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
90
90
|
/**
|
|
@@ -97,7 +97,7 @@ export interface RolePolicyAttachmentsExclusiveState {
|
|
|
97
97
|
*/
|
|
98
98
|
export interface RolePolicyAttachmentsExclusiveArgs {
|
|
99
99
|
/**
|
|
100
|
-
* A list of
|
|
100
|
+
* A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
|
|
101
101
|
*/
|
|
102
102
|
policyArns: pulumi.Input<pulumi.Input<string>[]>;
|
|
103
103
|
/**
|
|
@@ -8,11 +8,11 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* > **NOTE:**: To reliably detect drift between customer managed policies listed in this resource and actual policies attached to the role in the cloud, you currently need to run Pulumi with `pulumi up --refresh`. See [#4766](https://github.com/pulumi/pulumi-aws/issues/4766) for tracking making this work with regular `pulumi up`
|
|
10
10
|
*
|
|
11
|
-
* Resource for maintaining exclusive management of
|
|
11
|
+
* Resource for maintaining exclusive management of managed IAM policies assigned to an AWS IAM (Identity & Access Management) role.
|
|
12
12
|
*
|
|
13
|
-
* !> This resource takes exclusive ownership over
|
|
13
|
+
* !> This resource takes exclusive ownership over managed IAM policies attached to a role. This includes removal of managed IAM policies which are not explicitly configured. To prevent persistent drift, ensure any `aws.iam.RolePolicyAttachment` resources managed alongside this resource are included in the `policyArns` argument.
|
|
14
14
|
*
|
|
15
|
-
* > Destruction of this resource means Pulumi will no longer manage reconciliation of the configured policy attachments. It
|
|
15
|
+
* > Destruction of this resource means Pulumi will no longer manage reconciliation of the configured policy attachments. It **will not** detach the configured policies from the role.
|
|
16
16
|
*
|
|
17
17
|
* ## Example Usage
|
|
18
18
|
*
|
|
@@ -28,11 +28,11 @@ const utilities = require("../utilities");
|
|
|
28
28
|
* });
|
|
29
29
|
* ```
|
|
30
30
|
*
|
|
31
|
-
* ### Disallow
|
|
31
|
+
* ### Disallow Managed IAM Policies
|
|
32
32
|
*
|
|
33
|
-
* To automatically remove any configured
|
|
33
|
+
* To automatically remove any configured managed IAM policies, set the `policyArns` argument to an empty list.
|
|
34
34
|
*
|
|
35
|
-
* > This will not
|
|
35
|
+
* > This will not **prevent** managed IAM policies from being assigned to a role via Pulumi (or any other interface). This resource enables bringing managed IAM policy assignments into a configured state, however, this reconciliation happens only when `apply` is proactively run.
|
|
36
36
|
*
|
|
37
37
|
* ```typescript
|
|
38
38
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -46,7 +46,7 @@ const utilities = require("../utilities");
|
|
|
46
46
|
*
|
|
47
47
|
* ## Import
|
|
48
48
|
*
|
|
49
|
-
* Using `pulumi import`, import exclusive management of
|
|
49
|
+
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `role_name`. For example:
|
|
50
50
|
*
|
|
51
51
|
* ```sh
|
|
52
52
|
* $ pulumi import aws:iam/rolePolicyAttachmentsExclusive:RolePolicyAttachmentsExclusive example MyRole
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* ## Import
|
|
4
4
|
*
|
|
5
|
-
* Using `pulumi import`, import exclusive management of
|
|
5
|
+
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `user_name`. For example:
|
|
6
6
|
*
|
|
7
7
|
* ```sh
|
|
8
8
|
* $ pulumi import aws:iam/userPolicyAttachmentsExclusive:UserPolicyAttachmentsExclusive example MyUser
|
|
@@ -25,7 +25,7 @@ export declare class UserPolicyAttachmentsExclusive extends pulumi.CustomResourc
|
|
|
25
25
|
*/
|
|
26
26
|
static isInstance(obj: any): obj is UserPolicyAttachmentsExclusive;
|
|
27
27
|
/**
|
|
28
|
-
* A list of
|
|
28
|
+
* A list of managed IAM policy ARNs to be attached to the user. Policies attached to this user but not configured in this argument will be removed.
|
|
29
29
|
*/
|
|
30
30
|
readonly policyArns: pulumi.Output<string[]>;
|
|
31
31
|
/**
|
|
@@ -46,7 +46,7 @@ export declare class UserPolicyAttachmentsExclusive extends pulumi.CustomResourc
|
|
|
46
46
|
*/
|
|
47
47
|
export interface UserPolicyAttachmentsExclusiveState {
|
|
48
48
|
/**
|
|
49
|
-
* A list of
|
|
49
|
+
* A list of managed IAM policy ARNs to be attached to the user. Policies attached to this user but not configured in this argument will be removed.
|
|
50
50
|
*/
|
|
51
51
|
policyArns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
52
52
|
/**
|
|
@@ -59,7 +59,7 @@ export interface UserPolicyAttachmentsExclusiveState {
|
|
|
59
59
|
*/
|
|
60
60
|
export interface UserPolicyAttachmentsExclusiveArgs {
|
|
61
61
|
/**
|
|
62
|
-
* A list of
|
|
62
|
+
* A list of managed IAM policy ARNs to be attached to the user. Policies attached to this user but not configured in this argument will be removed.
|
|
63
63
|
*/
|
|
64
64
|
policyArns: pulumi.Input<pulumi.Input<string>[]>;
|
|
65
65
|
/**
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Import
|
|
10
10
|
*
|
|
11
|
-
* Using `pulumi import`, import exclusive management of
|
|
11
|
+
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `user_name`. For example:
|
|
12
12
|
*
|
|
13
13
|
* ```sh
|
|
14
14
|
* $ pulumi import aws:iam/userPolicyAttachmentsExclusive:UserPolicyAttachmentsExclusive example MyUser
|
|
@@ -4,21 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Manages an Image Builder Image Pipeline.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
-
* import * as aws from "@pulumi/aws";
|
|
12
|
-
*
|
|
13
|
-
* const example = new aws.imagebuilder.ImagePipeline("example", {
|
|
14
|
-
* imageRecipeArn: exampleAwsImagebuilderImageRecipe.arn,
|
|
15
|
-
* infrastructureConfigurationArn: exampleAwsImagebuilderInfrastructureConfiguration.arn,
|
|
16
|
-
* name: "example",
|
|
17
|
-
* schedule: {
|
|
18
|
-
* scheduleExpression: "cron(0 0 * * ? *)",
|
|
19
|
-
* },
|
|
20
|
-
* });
|
|
21
|
-
* ```
|
|
7
|
+
* > **NOTE:** Starting with version `5.74.0`, lifecycle meta-argument `replaceTriggeredBy` must be used in order to prevent a dependency error on destroy.
|
|
22
8
|
*
|
|
23
9
|
* ## Import
|
|
24
10
|
*
|
|
@@ -8,21 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages an Image Builder Image Pipeline.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as aws from "@pulumi/aws";
|
|
16
|
-
*
|
|
17
|
-
* const example = new aws.imagebuilder.ImagePipeline("example", {
|
|
18
|
-
* imageRecipeArn: exampleAwsImagebuilderImageRecipe.arn,
|
|
19
|
-
* infrastructureConfigurationArn: exampleAwsImagebuilderInfrastructureConfiguration.arn,
|
|
20
|
-
* name: "example",
|
|
21
|
-
* schedule: {
|
|
22
|
-
* scheduleExpression: "cron(0 0 * * ? *)",
|
|
23
|
-
* },
|
|
24
|
-
* });
|
|
25
|
-
* ```
|
|
11
|
+
* > **NOTE:** Starting with version `5.74.0`, lifecycle meta-argument `replaceTriggeredBy` must be used in order to prevent a dependency error on destroy.
|
|
26
12
|
*
|
|
27
13
|
* ## Import
|
|
28
14
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imagePipeline.js","sourceRoot":"","sources":["../../imagebuilder/imagePipeline.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"imagePipeline.js","sourceRoot":"","sources":["../../imagebuilder/imagePipeline.ts"],"names":[],"mappings":"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"}
|