diff --git a/go.mod b/go.mod index 34875b5e3..ca8f24240 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/adrianriobo/qenvs -go 1.19 +go 1.21 + +toolchain go1.21.1 require ( github.com/aws/aws-sdk-go v1.45.14 @@ -18,7 +20,7 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/azcore v1.8.0-beta.3 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.1 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resourcegraph/armresourcegraph v0.8.1 - github.com/pulumi/pulumi-aws/sdk/v6 v6.2.0 + github.com/pulumi/pulumi-aws/sdk/v6 v6.2.1 github.com/pulumi/pulumi-azure-native-sdk/compute/v2 v2.8.0 github.com/pulumi/pulumi-azure-native-sdk/network/v2 v2.8.0 github.com/pulumi/pulumi-azure-native-sdk/resources/v2 v2.8.0 diff --git a/go.sum b/go.sum index f83d75fd0..f60a88bad 100644 --- a/go.sum +++ b/go.sum @@ -305,6 +305,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/pulumi/pulumi-aws/sdk/v6 v6.2.0 h1:Q3H+xHE1Yjeqymcs0nFhdi7BA45iziAKLQJo6/i4RTA= github.com/pulumi/pulumi-aws/sdk/v6 v6.2.0/go.mod h1:UeOesX8l9ntIiiKXdQue8/rQDAvSf7Spd5qf15qngcY= +github.com/pulumi/pulumi-aws/sdk/v6 v6.2.1 h1:/eWONFbmSyMt/0CwurMukh86wwgD5+N7jUesTa2hYVU= +github.com/pulumi/pulumi-aws/sdk/v6 v6.2.1/go.mod h1:UeOesX8l9ntIiiKXdQue8/rQDAvSf7Spd5qf15qngcY= github.com/pulumi/pulumi-azure-native-sdk/compute/v2 v2.8.0 h1:QegNlGELyfKlUGEZimC6zOmBLZElLPrKSCWhbYkR9sQ= github.com/pulumi/pulumi-azure-native-sdk/compute/v2 v2.8.0/go.mod h1:YO1C18zYWFiCNf18kLXYVdVIW7mwSkMEVZL7yvG8QO4= github.com/pulumi/pulumi-azure-native-sdk/network/v2 v2.8.0 h1:ZYoTXEyI93nSrgad+HPSNAUSReHm/I8uAz1sDaoW+ag= diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/ami.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/ami.go index 71e105cc5..8bebf778e 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/ami.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/ami.go @@ -124,6 +124,8 @@ type Ami struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport pulumi.StringPtrOutput `pulumi:"tpmSupport"` @@ -142,6 +144,10 @@ func NewAmi(ctx *pulumi.Context, args = &AmiArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Ami err := ctx.RegisterResource("aws:ec2/ami:Ami", name, args, &resource, opts...) @@ -221,6 +227,8 @@ type amiState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport *string `pulumi:"tpmSupport"` @@ -289,6 +297,8 @@ type AmiState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport pulumi.StringPtrInput @@ -637,6 +647,8 @@ func (o AmiOutput) Tags() pulumi.StringMapOutput { } // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o AmiOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Ami) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiCopy.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiCopy.go index 18e00a720..9b6c4fb24 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiCopy.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiCopy.go @@ -117,7 +117,8 @@ type AmiCopy struct { // for created instances. No other value is supported at this time. SriovNetSupport pulumi.StringOutput `pulumi:"sriovNetSupport"` // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags pulumi.StringMapOutput `pulumi:"tags"` + Tags pulumi.StringMapOutput `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport pulumi.StringOutput `pulumi:"tpmSupport"` @@ -141,6 +142,10 @@ func NewAmiCopy(ctx *pulumi.Context, if args.SourceAmiRegion == nil { return nil, errors.New("invalid value for required argument 'SourceAmiRegion'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource AmiCopy err := ctx.RegisterResource("aws:ec2/amiCopy:AmiCopy", name, args, &resource, opts...) @@ -223,7 +228,8 @@ type amiCopyState struct { // for created instances. No other value is supported at this time. SriovNetSupport *string `pulumi:"sriovNetSupport"` // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags map[string]string `pulumi:"tags"` + Tags map[string]string `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport *string `pulumi:"tpmSupport"` @@ -294,7 +300,8 @@ type AmiCopyState struct { // for created instances. No other value is supported at this time. SriovNetSupport pulumi.StringPtrInput // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags pulumi.StringMapInput + Tags pulumi.StringMapInput + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport pulumi.StringPtrInput @@ -631,6 +638,7 @@ func (o AmiCopyOutput) Tags() pulumi.StringMapOutput { return o.ApplyT(func(v *AmiCopy) pulumi.StringMapOutput { return v.Tags }).(pulumi.StringMapOutput) } +// Deprecated: Please use `tags` instead. func (o AmiCopyOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *AmiCopy) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiFromInstance.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiFromInstance.go index 752c12909..94ea0191d 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiFromInstance.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/amiFromInstance.go @@ -112,7 +112,8 @@ type AmiFromInstance struct { // for created instances. No other value is supported at this time. SriovNetSupport pulumi.StringOutput `pulumi:"sriovNetSupport"` // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags pulumi.StringMapOutput `pulumi:"tags"` + Tags pulumi.StringMapOutput `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport pulumi.StringOutput `pulumi:"tpmSupport"` @@ -133,6 +134,10 @@ func NewAmiFromInstance(ctx *pulumi.Context, if args.SourceInstanceId == nil { return nil, errors.New("invalid value for required argument 'SourceInstanceId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource AmiFromInstance err := ctx.RegisterResource("aws:ec2/amiFromInstance:AmiFromInstance", name, args, &resource, opts...) @@ -209,7 +214,8 @@ type amiFromInstanceState struct { // for created instances. No other value is supported at this time. SriovNetSupport *string `pulumi:"sriovNetSupport"` // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags map[string]string `pulumi:"tags"` + Tags map[string]string `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport *string `pulumi:"tpmSupport"` @@ -274,7 +280,8 @@ type AmiFromInstanceState struct { // for created instances. No other value is supported at this time. SriovNetSupport pulumi.StringPtrInput // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags pulumi.StringMapInput + Tags pulumi.StringMapInput + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // If the image is configured for NitroTPM support, the value is `v2.0`. For more information, see [NitroTPM](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/nitrotpm.html) in the Amazon Elastic Compute Cloud User Guide. TpmSupport pulumi.StringPtrInput @@ -586,6 +593,7 @@ func (o AmiFromInstanceOutput) Tags() pulumi.StringMapOutput { return o.ApplyT(func(v *AmiFromInstance) pulumi.StringMapOutput { return v.Tags }).(pulumi.StringMapOutput) } +// Deprecated: Please use `tags` instead. func (o AmiFromInstanceOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *AmiFromInstance) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/capacityReservation.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/capacityReservation.go index 7ef0b2611..3ee966b47 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/capacityReservation.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/capacityReservation.go @@ -85,6 +85,8 @@ type CapacityReservation struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Indicates the tenancy of the Capacity Reservation. Specify either `default` or `dedicated`. Tenancy pulumi.StringPtrOutput `pulumi:"tenancy"` @@ -109,6 +111,10 @@ func NewCapacityReservation(ctx *pulumi.Context, if args.InstanceType == nil { return nil, errors.New("invalid value for required argument 'InstanceType'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource CapacityReservation err := ctx.RegisterResource("aws:ec2/capacityReservation:CapacityReservation", name, args, &resource, opts...) @@ -161,6 +167,8 @@ type capacityReservationState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Indicates the tenancy of the Capacity Reservation. Specify either `default` or `dedicated`. Tenancy *string `pulumi:"tenancy"` @@ -196,6 +204,8 @@ type CapacityReservationState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Indicates the tenancy of the Capacity Reservation. Specify either `default` or `dedicated`. Tenancy pulumi.StringPtrInput @@ -446,6 +456,8 @@ func (o CapacityReservationOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block +// +// Deprecated: Please use `tags` instead. func (o CapacityReservationOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *CapacityReservation) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/carrierGateway.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/carrierGateway.go index d6a0f7427..a02da9765 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/carrierGateway.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/carrierGateway.go @@ -63,6 +63,8 @@ type CarrierGateway struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The ID of the VPC to associate with the carrier gateway. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -78,6 +80,10 @@ func NewCarrierGateway(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource CarrierGateway err := ctx.RegisterResource("aws:ec2/carrierGateway:CarrierGateway", name, args, &resource, opts...) @@ -108,6 +114,8 @@ type carrierGatewayState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The ID of the VPC to associate with the carrier gateway. VpcId *string `pulumi:"vpcId"` @@ -121,6 +129,8 @@ type CarrierGatewayState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The ID of the VPC to associate with the carrier gateway. VpcId pulumi.StringPtrInput @@ -272,6 +282,8 @@ func (o CarrierGatewayOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o CarrierGatewayOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *CarrierGateway) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/customerGateway.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/customerGateway.go index 0ba31d707..a53ab1b59 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/customerGateway.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/customerGateway.go @@ -71,6 +71,8 @@ type CustomerGateway struct { // Tags to apply to the gateway. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The type of customer gateway. The only type AWS // supports at this time is "ipsec.1". @@ -90,6 +92,10 @@ func NewCustomerGateway(ctx *pulumi.Context, if args.Type == nil { return nil, errors.New("invalid value for required argument 'Type'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource CustomerGateway err := ctx.RegisterResource("aws:ec2/customerGateway:CustomerGateway", name, args, &resource, opts...) @@ -126,6 +132,8 @@ type customerGatewayState struct { // Tags to apply to the gateway. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The type of customer gateway. The only type AWS // supports at this time is "ipsec.1". @@ -146,6 +154,8 @@ type CustomerGatewayState struct { // Tags to apply to the gateway. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The type of customer gateway. The only type AWS // supports at this time is "ipsec.1". @@ -331,6 +341,8 @@ func (o CustomerGatewayOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o CustomerGatewayOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *CustomerGateway) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/dedicatedHost.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/dedicatedHost.go index d415452a3..4819c97f1 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/dedicatedHost.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/dedicatedHost.go @@ -77,6 +77,8 @@ type DedicatedHost struct { // Map of tags to assign to this resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -90,6 +92,10 @@ func NewDedicatedHost(ctx *pulumi.Context, if args.AvailabilityZone == nil { return nil, errors.New("invalid value for required argument 'AvailabilityZone'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DedicatedHost err := ctx.RegisterResource("aws:ec2/dedicatedHost:DedicatedHost", name, args, &resource, opts...) @@ -134,6 +140,8 @@ type dedicatedHostState struct { // Map of tags to assign to this resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -159,6 +167,8 @@ type DedicatedHostState struct { // Map of tags to assign to this resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -367,6 +377,8 @@ func (o DedicatedHostOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o DedicatedHostOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DedicatedHost) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultNetworkAcl.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultNetworkAcl.go index 4d4fa4013..d088be5c7 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultNetworkAcl.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultNetworkAcl.go @@ -217,6 +217,8 @@ type DefaultNetworkAcl struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // ID of the associated VPC VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -232,6 +234,10 @@ func NewDefaultNetworkAcl(ctx *pulumi.Context, if args.DefaultNetworkAclId == nil { return nil, errors.New("invalid value for required argument 'DefaultNetworkAclId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DefaultNetworkAcl err := ctx.RegisterResource("aws:ec2/defaultNetworkAcl:DefaultNetworkAcl", name, args, &resource, opts...) @@ -272,6 +278,8 @@ type defaultNetworkAclState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // ID of the associated VPC VpcId *string `pulumi:"vpcId"` @@ -295,6 +303,8 @@ type DefaultNetworkAclState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // ID of the associated VPC VpcId pulumi.StringPtrInput @@ -484,6 +494,8 @@ func (o DefaultNetworkAclOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o DefaultNetworkAclOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultNetworkAcl) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultRouteTable.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultRouteTable.go index 272692909..965788479 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultRouteTable.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultRouteTable.go @@ -117,6 +117,8 @@ type DefaultRouteTable struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // ID of the VPC. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -132,6 +134,10 @@ func NewDefaultRouteTable(ctx *pulumi.Context, if args.DefaultRouteTableId == nil { return nil, errors.New("invalid value for required argument 'DefaultRouteTableId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DefaultRouteTable err := ctx.RegisterResource("aws:ec2/defaultRouteTable:DefaultRouteTable", name, args, &resource, opts...) @@ -170,6 +176,8 @@ type defaultRouteTableState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // ID of the VPC. VpcId *string `pulumi:"vpcId"` @@ -191,6 +199,8 @@ type DefaultRouteTableState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // ID of the VPC. VpcId pulumi.StringPtrInput @@ -371,6 +381,8 @@ func (o DefaultRouteTableOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o DefaultRouteTableOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultRouteTable) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSecurityGroup.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSecurityGroup.go index b894272d9..b303ee6a4 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSecurityGroup.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSecurityGroup.go @@ -147,6 +147,8 @@ type DefaultSecurityGroup struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // VPC ID. **Note that changing the `vpcId` will _not_ restore any default security group rules that were modified, added, or removed.** It will be left in its current state. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -159,6 +161,10 @@ func NewDefaultSecurityGroup(ctx *pulumi.Context, args = &DefaultSecurityGroupArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DefaultSecurityGroup err := ctx.RegisterResource("aws:ec2/defaultSecurityGroup:DefaultSecurityGroup", name, args, &resource, opts...) @@ -199,6 +205,8 @@ type defaultSecurityGroupState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // VPC ID. **Note that changing the `vpcId` will _not_ restore any default security group rules that were modified, added, or removed.** It will be left in its current state. VpcId *string `pulumi:"vpcId"` @@ -222,6 +230,8 @@ type DefaultSecurityGroupState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // VPC ID. **Note that changing the `vpcId` will _not_ restore any default security group rules that were modified, added, or removed.** It will be left in its current state. VpcId pulumi.StringPtrInput @@ -411,6 +421,8 @@ func (o DefaultSecurityGroupOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o DefaultSecurityGroupOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultSecurityGroup) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSubnet.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSubnet.go index 02b2a6327..80a3a95f5 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSubnet.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultSubnet.go @@ -92,7 +92,8 @@ type DefaultSubnet struct { OwnerId pulumi.StringOutput `pulumi:"ownerId"` PrivateDnsHostnameTypeOnLaunch pulumi.StringOutput `pulumi:"privateDnsHostnameTypeOnLaunch"` Tags pulumi.StringMapOutput `pulumi:"tags"` - TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` + // Deprecated: Please use `tags` instead. + TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The ID of the VPC the subnet is in VpcId pulumi.StringOutput `pulumi:"vpcId"` } @@ -107,6 +108,10 @@ func NewDefaultSubnet(ctx *pulumi.Context, if args.AvailabilityZone == nil { return nil, errors.New("invalid value for required argument 'AvailabilityZone'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DefaultSubnet err := ctx.RegisterResource("aws:ec2/defaultSubnet:DefaultSubnet", name, args, &resource, opts...) @@ -159,7 +164,8 @@ type defaultSubnetState struct { OwnerId *string `pulumi:"ownerId"` PrivateDnsHostnameTypeOnLaunch *string `pulumi:"privateDnsHostnameTypeOnLaunch"` Tags map[string]string `pulumi:"tags"` - TagsAll map[string]string `pulumi:"tagsAll"` + // Deprecated: Please use `tags` instead. + TagsAll map[string]string `pulumi:"tagsAll"` // The ID of the VPC the subnet is in VpcId *string `pulumi:"vpcId"` } @@ -194,7 +200,8 @@ type DefaultSubnetState struct { OwnerId pulumi.StringPtrInput PrivateDnsHostnameTypeOnLaunch pulumi.StringPtrInput Tags pulumi.StringMapInput - TagsAll pulumi.StringMapInput + // Deprecated: Please use `tags` instead. + TagsAll pulumi.StringMapInput // The ID of the VPC the subnet is in VpcId pulumi.StringPtrInput } @@ -451,6 +458,7 @@ func (o DefaultSubnetOutput) Tags() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultSubnet) pulumi.StringMapOutput { return v.Tags }).(pulumi.StringMapOutput) } +// Deprecated: Please use `tags` instead. func (o DefaultSubnetOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultSubnet) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpc.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpc.go index 78417aefd..c66dd1670 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpc.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpc.go @@ -90,7 +90,8 @@ type DefaultVpc struct { MainRouteTableId pulumi.StringOutput `pulumi:"mainRouteTableId"` OwnerId pulumi.StringOutput `pulumi:"ownerId"` Tags pulumi.StringMapOutput `pulumi:"tags"` - TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` + // Deprecated: Please use `tags` instead. + TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } // NewDefaultVpc registers a new resource with the given unique name, arguments, and options. @@ -100,6 +101,10 @@ func NewDefaultVpc(ctx *pulumi.Context, args = &DefaultVpcArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DefaultVpc err := ctx.RegisterResource("aws:ec2/defaultVpc:DefaultVpc", name, args, &resource, opts...) @@ -147,7 +152,8 @@ type defaultVpcState struct { MainRouteTableId *string `pulumi:"mainRouteTableId"` OwnerId *string `pulumi:"ownerId"` Tags map[string]string `pulumi:"tags"` - TagsAll map[string]string `pulumi:"tagsAll"` + // Deprecated: Please use `tags` instead. + TagsAll map[string]string `pulumi:"tagsAll"` } type DefaultVpcState struct { @@ -175,7 +181,8 @@ type DefaultVpcState struct { MainRouteTableId pulumi.StringPtrInput OwnerId pulumi.StringPtrInput Tags pulumi.StringMapInput - TagsAll pulumi.StringMapInput + // Deprecated: Please use `tags` instead. + TagsAll pulumi.StringMapInput } func (DefaultVpcState) ElementType() reflect.Type { @@ -409,6 +416,7 @@ func (o DefaultVpcOutput) Tags() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultVpc) pulumi.StringMapOutput { return v.Tags }).(pulumi.StringMapOutput) } +// Deprecated: Please use `tags` instead. func (o DefaultVpcOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultVpc) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpcDhcpOptions.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpcDhcpOptions.go index aa59a1325..03b947a1e 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpcDhcpOptions.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/defaultVpcDhcpOptions.go @@ -77,7 +77,8 @@ type DefaultVpcDhcpOptions struct { // The ID of the AWS account that owns the DHCP options set. OwnerId pulumi.StringOutput `pulumi:"ownerId"` // A map of tags to assign to the resource. - Tags pulumi.StringMapOutput `pulumi:"tags"` + Tags pulumi.StringMapOutput `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -88,6 +89,10 @@ func NewDefaultVpcDhcpOptions(ctx *pulumi.Context, args = &DefaultVpcDhcpOptionsArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource DefaultVpcDhcpOptions err := ctx.RegisterResource("aws:ec2/defaultVpcDhcpOptions:DefaultVpcDhcpOptions", name, args, &resource, opts...) @@ -123,7 +128,8 @@ type defaultVpcDhcpOptionsState struct { // The ID of the AWS account that owns the DHCP options set. OwnerId *string `pulumi:"ownerId"` // A map of tags to assign to the resource. - Tags map[string]string `pulumi:"tags"` + Tags map[string]string `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -140,7 +146,8 @@ type DefaultVpcDhcpOptionsState struct { // The ID of the AWS account that owns the DHCP options set. OwnerId pulumi.StringPtrInput // A map of tags to assign to the resource. - Tags pulumi.StringMapInput + Tags pulumi.StringMapInput + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -311,6 +318,7 @@ func (o DefaultVpcDhcpOptionsOutput) Tags() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultVpcDhcpOptions) pulumi.StringMapOutput { return v.Tags }).(pulumi.StringMapOutput) } +// Deprecated: Please use `tags` instead. func (o DefaultVpcDhcpOptionsOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *DefaultVpcDhcpOptions) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/egressOnlyInternetGateway.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/egressOnlyInternetGateway.go index 9589787be..fdb1fe093 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/egressOnlyInternetGateway.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/egressOnlyInternetGateway.go @@ -69,6 +69,8 @@ type EgressOnlyInternetGateway struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The VPC ID to create in. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -84,6 +86,10 @@ func NewEgressOnlyInternetGateway(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource EgressOnlyInternetGateway err := ctx.RegisterResource("aws:ec2/egressOnlyInternetGateway:EgressOnlyInternetGateway", name, args, &resource, opts...) @@ -110,6 +116,8 @@ type egressOnlyInternetGatewayState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The VPC ID to create in. VpcId *string `pulumi:"vpcId"` @@ -119,6 +127,8 @@ type EgressOnlyInternetGatewayState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The VPC ID to create in. VpcId pulumi.StringPtrInput @@ -260,6 +270,8 @@ func (o EgressOnlyInternetGatewayOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o EgressOnlyInternetGatewayOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *EgressOnlyInternetGateway) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/eip.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/eip.go index 3f7d07cdb..5fb755e4f 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/eip.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/eip.go @@ -226,6 +226,8 @@ type Eip struct { // Map of tags to assign to the resource. Tags can only be applied to EIPs in a VPC. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Boolean if the EIP is in a VPC or not. Use `domain` instead. // Defaults to `true` unless the region supports EC2-Classic. @@ -246,6 +248,10 @@ func NewEip(ctx *pulumi.Context, args = &EipArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Eip err := ctx.RegisterResource("aws:ec2/eip:Eip", name, args, &resource, opts...) @@ -305,6 +311,8 @@ type eipState struct { // Map of tags to assign to the resource. Tags can only be applied to EIPs in a VPC. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Boolean if the EIP is in a VPC or not. Use `domain` instead. // Defaults to `true` unless the region supports EC2-Classic. @@ -355,6 +363,8 @@ type EipState struct { // Map of tags to assign to the resource. Tags can only be applied to EIPs in a VPC. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Boolean if the EIP is in a VPC or not. Use `domain` instead. // Defaults to `true` unless the region supports EC2-Classic. @@ -635,6 +645,8 @@ func (o EipOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o EipOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Eip) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/fleet.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/fleet.go index 5523bcf4b..0235e9842 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/fleet.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/fleet.go @@ -89,6 +89,8 @@ type Fleet struct { // Map of Fleet tags. To tag instances at launch, specify the tags in the Launch Template. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Nested argument containing target capacity configurations. Defined below. TargetCapacitySpecification FleetTargetCapacitySpecificationOutput `pulumi:"targetCapacitySpecification"` @@ -117,6 +119,10 @@ func NewFleet(ctx *pulumi.Context, if args.TargetCapacitySpecification == nil { return nil, errors.New("invalid value for required argument 'TargetCapacitySpecification'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Fleet err := ctx.RegisterResource("aws:ec2/fleet:Fleet", name, args, &resource, opts...) @@ -165,6 +171,8 @@ type fleetState struct { // Map of Fleet tags. To tag instances at launch, specify the tags in the Launch Template. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Nested argument containing target capacity configurations. Defined below. TargetCapacitySpecification *FleetTargetCapacitySpecification `pulumi:"targetCapacitySpecification"` @@ -206,6 +214,8 @@ type FleetState struct { // Map of Fleet tags. To tag instances at launch, specify the tags in the Launch Template. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Nested argument containing target capacity configurations. Defined below. TargetCapacitySpecification FleetTargetCapacitySpecificationPtrInput @@ -472,6 +482,8 @@ func (o FleetOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o FleetOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Fleet) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/flowLog.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/flowLog.go index 4eb80b9cf..7f9962172 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/flowLog.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/flowLog.go @@ -217,6 +217,8 @@ type FlowLog struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The type of traffic to capture. Valid values: `ACCEPT`,`REJECT`, `ALL`. TrafficType pulumi.StringPtrOutput `pulumi:"trafficType"` @@ -235,6 +237,10 @@ func NewFlowLog(ctx *pulumi.Context, args = &FlowLogArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource FlowLog err := ctx.RegisterResource("aws:ec2/flowLog:FlowLog", name, args, &resource, opts...) @@ -288,6 +294,8 @@ type flowLogState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The type of traffic to capture. Valid values: `ACCEPT`,`REJECT`, `ALL`. TrafficType *string `pulumi:"trafficType"` @@ -330,6 +338,8 @@ type FlowLogState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The type of traffic to capture. Valid values: `ACCEPT`,`REJECT`, `ALL`. TrafficType pulumi.StringPtrInput @@ -599,6 +609,8 @@ func (o FlowLogOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o FlowLogOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *FlowLog) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/instance.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/instance.go index 4718b07d2..084d4d86b 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/instance.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/instance.go @@ -418,6 +418,8 @@ type Instance struct { // Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`. Tenancy pulumi.StringOutput `pulumi:"tenancy"` @@ -442,6 +444,10 @@ func NewInstance(ctx *pulumi.Context, args = &InstanceArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Instance err := ctx.RegisterResource("aws:ec2/instance:Instance", name, args, &resource, opts...) @@ -576,6 +582,8 @@ type instanceState struct { // Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`. Tenancy *string `pulumi:"tenancy"` @@ -705,6 +713,8 @@ type InstanceState struct { // Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`. Tenancy pulumi.StringPtrInput @@ -1315,6 +1325,8 @@ func (o InstanceOutput) Tags() pulumi.StringMapOutput { } // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o InstanceOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Instance) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/internetGateway.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/internetGateway.go index f13bf279c..7a5c0daeb 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/internetGateway.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/internetGateway.go @@ -91,6 +91,8 @@ type InternetGateway struct { // ``` Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The VPC ID to create in. See the ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -103,6 +105,10 @@ func NewInternetGateway(ctx *pulumi.Context, args = &InternetGatewayArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource InternetGateway err := ctx.RegisterResource("aws:ec2/internetGateway:InternetGateway", name, args, &resource, opts...) @@ -162,6 +168,8 @@ type internetGatewayState struct { // ``` Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The VPC ID to create in. See the ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC. VpcId *string `pulumi:"vpcId"` @@ -204,6 +212,8 @@ type InternetGatewayState struct { // ``` Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The VPC ID to create in. See the ec2.InternetGatewayAttachment resource for an alternate way to attach an Internet Gateway to a VPC. VpcId pulumi.StringPtrInput @@ -445,6 +455,8 @@ func (o InternetGatewayOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o InternetGatewayOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *InternetGateway) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/keyPair.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/keyPair.go index 435031b23..ec33ec533 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/keyPair.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/keyPair.go @@ -80,6 +80,8 @@ type KeyPair struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -93,6 +95,10 @@ func NewKeyPair(ctx *pulumi.Context, if args.PublicKey == nil { return nil, errors.New("invalid value for required argument 'PublicKey'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource KeyPair err := ctx.RegisterResource("aws:ec2/keyPair:KeyPair", name, args, &resource, opts...) @@ -133,6 +139,8 @@ type keyPairState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -154,6 +162,8 @@ type KeyPairState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -336,6 +346,8 @@ func (o KeyPairOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o KeyPairOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *KeyPair) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/launchTemplate.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/launchTemplate.go index edbf8975c..33410bd55 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/launchTemplate.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/launchTemplate.go @@ -220,6 +220,8 @@ type LaunchTemplate struct { // A map of tags to assign to the launch template. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Whether to update Default Version each update. Conflicts with `defaultVersion`. UpdateDefaultVersion pulumi.BoolPtrOutput `pulumi:"updateDefaultVersion"` @@ -236,6 +238,10 @@ func NewLaunchTemplate(ctx *pulumi.Context, args = &LaunchTemplateArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource LaunchTemplate err := ctx.RegisterResource("aws:ec2/launchTemplate:LaunchTemplate", name, args, &resource, opts...) @@ -341,6 +347,8 @@ type launchTemplateState struct { // A map of tags to assign to the launch template. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Whether to update Default Version each update. Conflicts with `defaultVersion`. UpdateDefaultVersion *bool `pulumi:"updateDefaultVersion"` @@ -433,6 +441,8 @@ type LaunchTemplateState struct { // A map of tags to assign to the launch template. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Whether to update Default Version each update. Conflicts with `defaultVersion`. UpdateDefaultVersion pulumi.BoolPtrInput @@ -926,6 +936,8 @@ func (o LaunchTemplateOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o LaunchTemplateOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *LaunchTemplate) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/localGatewayRouteTableVpcAssociation.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/localGatewayRouteTableVpcAssociation.go index 0d9d42ab5..3931dc46e 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/localGatewayRouteTableVpcAssociation.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/localGatewayRouteTableVpcAssociation.go @@ -72,6 +72,8 @@ type LocalGatewayRouteTableVpcAssociation struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Identifier of EC2 VPC. // @@ -92,6 +94,10 @@ func NewLocalGatewayRouteTableVpcAssociation(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource LocalGatewayRouteTableVpcAssociation err := ctx.RegisterResource("aws:ec2/localGatewayRouteTableVpcAssociation:LocalGatewayRouteTableVpcAssociation", name, args, &resource, opts...) @@ -121,6 +127,8 @@ type localGatewayRouteTableVpcAssociationState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Identifier of EC2 VPC. // @@ -135,6 +143,8 @@ type LocalGatewayRouteTableVpcAssociationState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Identifier of EC2 VPC. // @@ -295,6 +305,8 @@ func (o LocalGatewayRouteTableVpcAssociationOutput) Tags() pulumi.StringMapOutpu } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o LocalGatewayRouteTableVpcAssociationOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *LocalGatewayRouteTableVpcAssociation) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/managedPrefixList.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/managedPrefixList.go index 225f821ac..00e86a2de 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/managedPrefixList.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/managedPrefixList.go @@ -96,6 +96,8 @@ type ManagedPrefixList struct { // Map of tags to assign to this resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Latest version of this prefix list. Version pulumi.IntOutput `pulumi:"version"` @@ -114,6 +116,10 @@ func NewManagedPrefixList(ctx *pulumi.Context, if args.MaxEntries == nil { return nil, errors.New("invalid value for required argument 'MaxEntries'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource ManagedPrefixList err := ctx.RegisterResource("aws:ec2/managedPrefixList:ManagedPrefixList", name, args, &resource, opts...) @@ -152,6 +158,8 @@ type managedPrefixListState struct { // Map of tags to assign to this resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Latest version of this prefix list. Version *int `pulumi:"version"` @@ -173,6 +181,8 @@ type ManagedPrefixListState struct { // Map of tags to assign to this resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Latest version of this prefix list. Version pulumi.IntPtrInput @@ -356,6 +366,8 @@ func (o ManagedPrefixListOutput) Tags() pulumi.StringMapOutput { } // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o ManagedPrefixListOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *ManagedPrefixList) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/natGateway.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/natGateway.go index 7a0ac1003..1c2a36cf8 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/natGateway.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/natGateway.go @@ -168,6 +168,8 @@ type NatGateway struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -181,6 +183,10 @@ func NewNatGateway(ctx *pulumi.Context, if args.SubnetId == nil { return nil, errors.New("invalid value for required argument 'SubnetId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource NatGateway err := ctx.RegisterResource("aws:ec2/natGateway:NatGateway", name, args, &resource, opts...) @@ -227,6 +233,8 @@ type natGatewayState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -254,6 +262,8 @@ type NatGatewayState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -467,6 +477,8 @@ func (o NatGatewayOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o NatGatewayOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *NatGateway) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkAcl.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkAcl.go index 8991aca84..6a95aa240 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkAcl.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkAcl.go @@ -100,6 +100,8 @@ type NetworkAcl struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The ID of the associated VPC. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -115,6 +117,10 @@ func NewNetworkAcl(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource NetworkAcl err := ctx.RegisterResource("aws:ec2/networkAcl:NetworkAcl", name, args, &resource, opts...) @@ -151,6 +157,8 @@ type networkAclState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The ID of the associated VPC. VpcId *string `pulumi:"vpcId"` @@ -170,6 +178,8 @@ type NetworkAclState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The ID of the associated VPC. VpcId pulumi.StringPtrInput @@ -348,6 +358,8 @@ func (o NetworkAclOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o NetworkAclOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *NetworkAcl) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsAnalysis.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsAnalysis.go index d257d3c61..31f67718d 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsAnalysis.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsAnalysis.go @@ -88,6 +88,8 @@ type NetworkInsightsAnalysis struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // If enabled, the resource will wait for the Network Insights Analysis status to change to `succeeded` or `failed`. Setting this to `false` will skip the process. Default: `true`. WaitForCompletion pulumi.BoolPtrOutput `pulumi:"waitForCompletion"` @@ -105,6 +107,10 @@ func NewNetworkInsightsAnalysis(ctx *pulumi.Context, if args.NetworkInsightsPathId == nil { return nil, errors.New("invalid value for required argument 'NetworkInsightsPathId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource NetworkInsightsAnalysis err := ctx.RegisterResource("aws:ec2/networkInsightsAnalysis:NetworkInsightsAnalysis", name, args, &resource, opts...) @@ -155,6 +161,8 @@ type networkInsightsAnalysisState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // If enabled, the resource will wait for the Network Insights Analysis status to change to `succeeded` or `failed`. Setting this to `false` will skip the process. Default: `true`. WaitForCompletion *bool `pulumi:"waitForCompletion"` @@ -190,6 +198,8 @@ type NetworkInsightsAnalysisState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // If enabled, the resource will wait for the Network Insights Analysis status to change to `succeeded` or `failed`. Setting this to `false` will skip the process. Default: `true`. WaitForCompletion pulumi.BoolPtrInput @@ -408,6 +418,8 @@ func (o NetworkInsightsAnalysisOutput) Tags() pulumi.StringMapOutput { } // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o NetworkInsightsAnalysisOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *NetworkInsightsAnalysis) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsPath.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsPath.go index 7bb3ee0a4..e8c074a4b 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsPath.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInsightsPath.go @@ -78,6 +78,8 @@ type NetworkInsightsPath struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -97,6 +99,10 @@ func NewNetworkInsightsPath(ctx *pulumi.Context, if args.Source == nil { return nil, errors.New("invalid value for required argument 'Source'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource NetworkInsightsPath err := ctx.RegisterResource("aws:ec2/networkInsightsPath:NetworkInsightsPath", name, args, &resource, opts...) @@ -143,6 +149,8 @@ type networkInsightsPathState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -170,6 +178,8 @@ type NetworkInsightsPathState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -380,6 +390,8 @@ func (o NetworkInsightsPathOutput) Tags() pulumi.StringMapOutput { } // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o NetworkInsightsPathOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *NetworkInsightsPath) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInterface.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInterface.go index 884fae6f8..ff91641f2 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInterface.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/networkInterface.go @@ -130,6 +130,8 @@ type NetworkInterface struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -143,6 +145,10 @@ func NewNetworkInterface(ctx *pulumi.Context, if args.SubnetId == nil { return nil, errors.New("invalid value for required argument 'SubnetId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource NetworkInterface err := ctx.RegisterResource("aws:ec2/networkInterface:NetworkInterface", name, args, &resource, opts...) @@ -217,6 +223,8 @@ type networkInterfaceState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -272,6 +280,8 @@ type NetworkInterfaceState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -605,6 +615,8 @@ func (o NetworkInterfaceOutput) Tags() pulumi.StringMapOutput { } // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o NetworkInterfaceOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *NetworkInterface) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/placementGroup.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/placementGroup.go index f9c65a526..3a441c12d 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/placementGroup.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/placementGroup.go @@ -72,6 +72,8 @@ type PlacementGroup struct { // Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -85,6 +87,10 @@ func NewPlacementGroup(ctx *pulumi.Context, if args.Strategy == nil { return nil, errors.New("invalid value for required argument 'Strategy'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource PlacementGroup err := ctx.RegisterResource("aws:ec2/placementGroup:PlacementGroup", name, args, &resource, opts...) @@ -126,6 +132,8 @@ type placementGroupState struct { // Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -148,6 +156,8 @@ type PlacementGroupState struct { // Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -338,6 +348,8 @@ func (o PlacementGroupOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o PlacementGroupOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *PlacementGroup) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/routeTable.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/routeTable.go index 0c90656ca..d5d152a2c 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/routeTable.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/routeTable.go @@ -222,6 +222,8 @@ type RouteTable struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The VPC ID. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -237,6 +239,10 @@ func NewRouteTable(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource RouteTable err := ctx.RegisterResource("aws:ec2/routeTable:RouteTable", name, args, &resource, opts...) @@ -272,6 +278,8 @@ type routeTableState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The VPC ID. VpcId *string `pulumi:"vpcId"` @@ -290,6 +298,8 @@ type RouteTableState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The VPC ID. VpcId pulumi.StringPtrInput @@ -462,6 +472,8 @@ func (o RouteTableOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o RouteTableOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *RouteTable) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/securityGroup.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/securityGroup.go index 90782a9a6..7322dc2bb 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/securityGroup.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/securityGroup.go @@ -324,6 +324,8 @@ type SecurityGroup struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // VPC ID. Defaults to the region's default VPC. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -339,6 +341,10 @@ func NewSecurityGroup(ctx *pulumi.Context, if args.Description == nil { args.Description = pulumi.StringPtr("Managed by Pulumi") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource SecurityGroup err := ctx.RegisterResource("aws:ec2/securityGroup:SecurityGroup", name, args, &resource, opts...) @@ -381,6 +387,8 @@ type securityGroupState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // VPC ID. Defaults to the region's default VPC. VpcId *string `pulumi:"vpcId"` @@ -406,6 +414,8 @@ type SecurityGroupState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // VPC ID. Defaults to the region's default VPC. VpcId pulumi.StringPtrInput @@ -611,6 +621,8 @@ func (o SecurityGroupOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o SecurityGroupOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *SecurityGroup) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotFleetRequest.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotFleetRequest.go index 79fdfafb7..ac07e976e 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotFleetRequest.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotFleetRequest.go @@ -266,6 +266,8 @@ type SpotFleetRequest struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The number of units to request. You can choose to set the // target capacity in terms of instances or a performance characteristic that is @@ -305,6 +307,10 @@ func NewSpotFleetRequest(ctx *pulumi.Context, if args.TargetCapacity == nil { return nil, errors.New("invalid value for required argument 'TargetCapacity'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource SpotFleetRequest err := ctx.RegisterResource("aws:ec2/spotFleetRequest:SpotFleetRequest", name, args, &resource, opts...) @@ -387,6 +393,8 @@ type spotFleetRequestState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The number of units to request. You can choose to set the // target capacity in terms of instances or a performance characteristic that is @@ -473,6 +481,8 @@ type SpotFleetRequestState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The number of units to request. You can choose to set the // target capacity in terms of instances or a performance characteristic that is @@ -899,6 +909,8 @@ func (o SpotFleetRequestOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o SpotFleetRequestOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *SpotFleetRequest) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotInstanceRequest.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotInstanceRequest.go index cc2f49e9d..ffd9e14c2 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotInstanceRequest.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/spotInstanceRequest.go @@ -197,6 +197,8 @@ type SpotInstanceRequest struct { // Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`. Tenancy pulumi.StringOutput `pulumi:"tenancy"` @@ -229,6 +231,10 @@ func NewSpotInstanceRequest(ctx *pulumi.Context, args = &SpotInstanceRequestArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource SpotInstanceRequest err := ctx.RegisterResource("aws:ec2/spotInstanceRequest:SpotInstanceRequest", name, args, &resource, opts...) @@ -378,6 +384,8 @@ type spotInstanceRequestState struct { // Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`. Tenancy *string `pulumi:"tenancy"` @@ -530,6 +538,8 @@ type SpotInstanceRequestState struct { // Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`. Tenancy pulumi.StringPtrInput @@ -1222,6 +1232,8 @@ func (o SpotInstanceRequestOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o SpotInstanceRequestOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *SpotInstanceRequest) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/subnet.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/subnet.go index 7949102c4..82fe7317f 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/subnet.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/subnet.go @@ -140,6 +140,8 @@ type Subnet struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The VPC ID. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -155,6 +157,10 @@ func NewSubnet(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Subnet err := ctx.RegisterResource("aws:ec2/subnet:Subnet", name, args, &resource, opts...) @@ -222,6 +228,8 @@ type subnetState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The VPC ID. VpcId *string `pulumi:"vpcId"` @@ -272,6 +280,8 @@ type SubnetState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The VPC ID. VpcId pulumi.StringPtrInput @@ -578,6 +588,8 @@ func (o SubnetOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o SubnetOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Subnet) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorFilter.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorFilter.go index d8c759498..4d402825c 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorFilter.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorFilter.go @@ -67,6 +67,8 @@ type TrafficMirrorFilter struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -77,6 +79,10 @@ func NewTrafficMirrorFilter(ctx *pulumi.Context, args = &TrafficMirrorFilterArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource TrafficMirrorFilter err := ctx.RegisterResource("aws:ec2/trafficMirrorFilter:TrafficMirrorFilter", name, args, &resource, opts...) @@ -109,6 +115,8 @@ type trafficMirrorFilterState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -122,6 +130,8 @@ type TrafficMirrorFilterState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -280,6 +290,8 @@ func (o TrafficMirrorFilterOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o TrafficMirrorFilterOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *TrafficMirrorFilter) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorSession.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorSession.go index a8f73a799..374a84092 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorSession.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorSession.go @@ -90,6 +90,8 @@ type TrafficMirrorSession struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // ID of the traffic mirror filter to be used TrafficMirrorFilterId pulumi.StringOutput `pulumi:"trafficMirrorFilterId"` @@ -118,6 +120,10 @@ func NewTrafficMirrorSession(ctx *pulumi.Context, if args.TrafficMirrorTargetId == nil { return nil, errors.New("invalid value for required argument 'TrafficMirrorTargetId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource TrafficMirrorSession err := ctx.RegisterResource("aws:ec2/trafficMirrorSession:TrafficMirrorSession", name, args, &resource, opts...) @@ -156,6 +162,8 @@ type trafficMirrorSessionState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // ID of the traffic mirror filter to be used TrafficMirrorFilterId *string `pulumi:"trafficMirrorFilterId"` @@ -181,6 +189,8 @@ type TrafficMirrorSessionState struct { // Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // ID of the traffic mirror filter to be used TrafficMirrorFilterId pulumi.StringPtrInput @@ -380,6 +390,8 @@ func (o TrafficMirrorSessionOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o TrafficMirrorSessionOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *TrafficMirrorSession) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorTarget.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorTarget.go index 03d82a164..d27734e4c 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorTarget.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/trafficMirrorTarget.go @@ -87,6 +87,8 @@ type TrafficMirrorTarget struct { // **NOTE:** Either `networkInterfaceId` or `networkLoadBalancerArn` should be specified and both should not be specified together Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -97,6 +99,10 @@ func NewTrafficMirrorTarget(ctx *pulumi.Context, args = &TrafficMirrorTargetArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource TrafficMirrorTarget err := ctx.RegisterResource("aws:ec2/trafficMirrorTarget:TrafficMirrorTarget", name, args, &resource, opts...) @@ -137,6 +143,8 @@ type trafficMirrorTargetState struct { // **NOTE:** Either `networkInterfaceId` or `networkLoadBalancerArn` should be specified and both should not be specified together Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -158,6 +166,8 @@ type TrafficMirrorTargetState struct { // **NOTE:** Either `networkInterfaceId` or `networkLoadBalancerArn` should be specified and both should not be specified together Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -345,6 +355,8 @@ func (o TrafficMirrorTargetOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o TrafficMirrorTargetOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *TrafficMirrorTarget) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpc.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpc.go index 403ba3c7e..aa674520d 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpc.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpc.go @@ -187,6 +187,8 @@ type Vpc struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -197,6 +199,10 @@ func NewVpc(ctx *pulumi.Context, args = &VpcArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Vpc err := ctx.RegisterResource("aws:ec2/vpc:Vpc", name, args, &resource, opts...) @@ -264,6 +270,8 @@ type vpcState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -312,6 +320,8 @@ type VpcState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -596,6 +606,8 @@ func (o VpcOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Vpc) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcDhcpOptions.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcDhcpOptions.go index 047cb2684..629a2ac02 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcDhcpOptions.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcDhcpOptions.go @@ -121,6 +121,8 @@ type VpcDhcpOptions struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -131,6 +133,10 @@ func NewVpcDhcpOptions(ctx *pulumi.Context, args = &VpcDhcpOptionsArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcDhcpOptions err := ctx.RegisterResource("aws:ec2/vpcDhcpOptions:VpcDhcpOptions", name, args, &resource, opts...) @@ -171,6 +177,8 @@ type vpcDhcpOptionsState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -192,6 +200,8 @@ type VpcDhcpOptionsState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -382,6 +392,8 @@ func (o VpcDhcpOptionsOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcDhcpOptionsOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcDhcpOptions) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpoint.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpoint.go index 1e289045e..01e9b8e88 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpoint.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpoint.go @@ -209,6 +209,8 @@ type VpcEndpoint struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The VPC endpoint type, `Gateway`, `GatewayLoadBalancer`, or `Interface`. Defaults to `Gateway`. VpcEndpointType pulumi.StringPtrOutput `pulumi:"vpcEndpointType"` @@ -229,6 +231,10 @@ func NewVpcEndpoint(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcEndpoint err := ctx.RegisterResource("aws:ec2/vpcEndpoint:VpcEndpoint", name, args, &resource, opts...) @@ -291,6 +297,8 @@ type vpcEndpointState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The VPC endpoint type, `Gateway`, `GatewayLoadBalancer`, or `Interface`. Defaults to `Gateway`. VpcEndpointType *string `pulumi:"vpcEndpointType"` @@ -338,6 +346,8 @@ type VpcEndpointState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The VPC endpoint type, `Gateway`, `GatewayLoadBalancer`, or `Interface`. Defaults to `Gateway`. VpcEndpointType pulumi.StringPtrInput @@ -612,6 +622,8 @@ func (o VpcEndpointOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcEndpointOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcEndpoint) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpointService.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpointService.go index 6f3cb752f..41f17be0e 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpointService.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcEndpointService.go @@ -123,6 +123,8 @@ type VpcEndpointService struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -136,6 +138,10 @@ func NewVpcEndpointService(ctx *pulumi.Context, if args.AcceptanceRequired == nil { return nil, errors.New("invalid value for required argument 'AcceptanceRequired'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcEndpointService err := ctx.RegisterResource("aws:ec2/vpcEndpointService:VpcEndpointService", name, args, &resource, opts...) @@ -190,6 +196,8 @@ type vpcEndpointServiceState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -225,6 +233,8 @@ type VpcEndpointServiceState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -456,6 +466,8 @@ func (o VpcEndpointServiceOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcEndpointServiceOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcEndpointService) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpam.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpam.go index 2cc9af62c..6e9cbcec2 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpam.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpam.go @@ -49,6 +49,8 @@ type VpcIpam struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -62,6 +64,10 @@ func NewVpcIpam(ctx *pulumi.Context, if args.OperatingRegions == nil { return nil, errors.New("invalid value for required argument 'OperatingRegions'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcIpam err := ctx.RegisterResource("aws:ec2/vpcIpam:VpcIpam", name, args, &resource, opts...) @@ -107,6 +113,8 @@ type vpcIpamState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -133,6 +141,8 @@ type VpcIpamState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -326,6 +336,8 @@ func (o VpcIpamOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcIpamOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcIpam) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamPool.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamPool.go index cd517b979..460968205 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamPool.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamPool.go @@ -173,6 +173,8 @@ type VpcIpamPool struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -189,6 +191,10 @@ func NewVpcIpamPool(ctx *pulumi.Context, if args.IpamScopeId == nil { return nil, errors.New("invalid value for required argument 'IpamScopeId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcIpamPool err := ctx.RegisterResource("aws:ec2/vpcIpamPool:VpcIpamPool", name, args, &resource, opts...) @@ -248,6 +254,8 @@ type vpcIpamPoolState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -288,6 +296,8 @@ type VpcIpamPoolState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -561,6 +571,8 @@ func (o VpcIpamPoolOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcIpamPoolOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcIpamPool) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscovery.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscovery.go index 6a88d4011..998abbe35 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscovery.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscovery.go @@ -83,6 +83,8 @@ type VpcIpamResourceDiscovery struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -96,6 +98,10 @@ func NewVpcIpamResourceDiscovery(ctx *pulumi.Context, if args.OperatingRegions == nil { return nil, errors.New("invalid value for required argument 'OperatingRegions'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcIpamResourceDiscovery err := ctx.RegisterResource("aws:ec2/vpcIpamResourceDiscovery:VpcIpamResourceDiscovery", name, args, &resource, opts...) @@ -134,6 +140,8 @@ type vpcIpamResourceDiscoveryState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -153,6 +161,8 @@ type VpcIpamResourceDiscoveryState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -328,6 +338,8 @@ func (o VpcIpamResourceDiscoveryOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcIpamResourceDiscoveryOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcIpamResourceDiscovery) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscoveryAssociation.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscoveryAssociation.go index 2f7f26286..3da3a5d8d 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscoveryAssociation.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamResourceDiscoveryAssociation.go @@ -80,6 +80,8 @@ type VpcIpamResourceDiscoveryAssociation struct { // A map of tags to add to the IPAM resource discovery association resource. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -96,6 +98,10 @@ func NewVpcIpamResourceDiscoveryAssociation(ctx *pulumi.Context, if args.IpamResourceDiscoveryId == nil { return nil, errors.New("invalid value for required argument 'IpamResourceDiscoveryId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcIpamResourceDiscoveryAssociation err := ctx.RegisterResource("aws:ec2/vpcIpamResourceDiscoveryAssociation:VpcIpamResourceDiscoveryAssociation", name, args, &resource, opts...) @@ -138,6 +144,8 @@ type vpcIpamResourceDiscoveryAssociationState struct { // A map of tags to add to the IPAM resource discovery association resource. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -161,6 +169,8 @@ type VpcIpamResourceDiscoveryAssociationState struct { // A map of tags to add to the IPAM resource discovery association resource. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -344,6 +354,8 @@ func (o VpcIpamResourceDiscoveryAssociationOutput) Tags() pulumi.StringMapOutput } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcIpamResourceDiscoveryAssociationOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcIpamResourceDiscoveryAssociation) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamScope.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamScope.go index dab4aa426..ea03cd45c 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamScope.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcIpamScope.go @@ -85,7 +85,8 @@ type VpcIpamScope struct { // The number of pools in the scope. PoolCount pulumi.IntOutput `pulumi:"poolCount"` // Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags pulumi.StringMapOutput `pulumi:"tags"` + Tags pulumi.StringMapOutput `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -99,6 +100,10 @@ func NewVpcIpamScope(ctx *pulumi.Context, if args.IpamId == nil { return nil, errors.New("invalid value for required argument 'IpamId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcIpamScope err := ctx.RegisterResource("aws:ec2/vpcIpamScope:VpcIpamScope", name, args, &resource, opts...) @@ -136,7 +141,8 @@ type vpcIpamScopeState struct { // The number of pools in the scope. PoolCount *int `pulumi:"poolCount"` // Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags map[string]string `pulumi:"tags"` + Tags map[string]string `pulumi:"tags"` + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -155,7 +161,8 @@ type VpcIpamScopeState struct { // The number of pools in the scope. PoolCount pulumi.IntPtrInput // Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Tags pulumi.StringMapInput + Tags pulumi.StringMapInput + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -332,6 +339,7 @@ func (o VpcIpamScopeOutput) Tags() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcIpamScope) pulumi.StringMapOutput { return v.Tags }).(pulumi.StringMapOutput) } +// Deprecated: Please use `tags` instead. func (o VpcIpamScopeOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcIpamScope) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnection.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnection.go index 06e6da917..e4eb6e77e 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnection.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnection.go @@ -214,6 +214,8 @@ type VpcPeeringConnection struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The ID of the requester VPC. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -232,6 +234,10 @@ func NewVpcPeeringConnection(ctx *pulumi.Context, if args.VpcId == nil { return nil, errors.New("invalid value for required argument 'VpcId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcPeeringConnection err := ctx.RegisterResource("aws:ec2/vpcPeeringConnection:VpcPeeringConnection", name, args, &resource, opts...) @@ -276,6 +282,8 @@ type vpcPeeringConnectionState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The ID of the requester VPC. VpcId *string `pulumi:"vpcId"` @@ -303,6 +311,8 @@ type VpcPeeringConnectionState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The ID of the requester VPC. VpcId pulumi.StringPtrInput @@ -515,6 +525,8 @@ func (o VpcPeeringConnectionOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcPeeringConnectionOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcPeeringConnection) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnectionAccepter.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnectionAccepter.go index aaed9893d..1c04644fb 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnectionAccepter.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpcPeeringConnectionAccepter.go @@ -121,6 +121,8 @@ type VpcPeeringConnectionAccepter struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The ID of the accepter VPC. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -138,6 +140,10 @@ func NewVpcPeeringConnectionAccepter(ctx *pulumi.Context, if args.VpcPeeringConnectionId == nil { return nil, errors.New("invalid value for required argument 'VpcPeeringConnectionId'") } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpcPeeringConnectionAccepter err := ctx.RegisterResource("aws:ec2/vpcPeeringConnectionAccepter:VpcPeeringConnectionAccepter", name, args, &resource, opts...) @@ -180,6 +186,8 @@ type vpcPeeringConnectionAccepterState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The ID of the accepter VPC. VpcId *string `pulumi:"vpcId"` @@ -207,6 +215,8 @@ type VpcPeeringConnectionAccepterState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The ID of the accepter VPC. VpcId pulumi.StringPtrInput @@ -403,6 +413,8 @@ func (o VpcPeeringConnectionAccepterOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpcPeeringConnectionAccepterOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpcPeeringConnectionAccepter) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnConnection.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnConnection.go index bebb59711..739026867 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnConnection.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnConnection.go @@ -227,6 +227,8 @@ type VpnConnection struct { // Tags to apply to the connection. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // When associated with an EC2 Transit Gateway (`transitGatewayId` argument), the attachment ID. See also the `ec2.Tag` resource for tagging the EC2 Transit Gateway VPN Attachment. TransitGatewayAttachmentId pulumi.StringOutput `pulumi:"transitGatewayAttachmentId"` @@ -365,6 +367,7 @@ func NewVpnConnection(ctx *pulumi.Context, } secrets := pulumi.AdditionalSecretOutputs([]string{ "customerGatewayConfiguration", + "tagsAll", "tunnel1PresharedKey", "tunnel2PresharedKey", }) @@ -421,6 +424,8 @@ type vpnConnectionState struct { // Tags to apply to the connection. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // When associated with an EC2 Transit Gateway (`transitGatewayId` argument), the attachment ID. See also the `ec2.Tag` resource for tagging the EC2 Transit Gateway VPN Attachment. TransitGatewayAttachmentId *string `pulumi:"transitGatewayAttachmentId"` @@ -568,6 +573,8 @@ type VpnConnectionState struct { // Tags to apply to the connection. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // When associated with an EC2 Transit Gateway (`transitGatewayId` argument), the attachment ID. See also the `ec2.Tag` resource for tagging the EC2 Transit Gateway VPN Attachment. TransitGatewayAttachmentId pulumi.StringPtrInput @@ -1094,6 +1101,8 @@ func (o VpnConnectionOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpnConnectionOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpnConnection) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnGateway.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnGateway.go index d3ad77563..7442ed61b 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnGateway.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2/vpnGateway.go @@ -64,6 +64,8 @@ type VpnGateway struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // The VPC ID to create in. VpcId pulumi.StringOutput `pulumi:"vpcId"` @@ -76,6 +78,10 @@ func NewVpnGateway(ctx *pulumi.Context, args = &VpnGatewayArgs{} } + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource VpnGateway err := ctx.RegisterResource("aws:ec2/vpnGateway:VpnGateway", name, args, &resource, opts...) @@ -108,6 +114,8 @@ type vpnGatewayState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // The VPC ID to create in. VpcId *string `pulumi:"vpcId"` @@ -123,6 +131,8 @@ type VpnGatewayState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // The VPC ID to create in. VpcId pulumi.StringPtrInput @@ -287,6 +297,8 @@ func (o VpnGatewayOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o VpnGatewayOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *VpnGateway) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listener.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listener.go index 2437a9447..592e30f72 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listener.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listener.go @@ -385,6 +385,8 @@ type Listener struct { // > **NOTE::** Please note that listeners that are attached to Application Load Balancers must use either `HTTP` or `HTTPS` protocols while listeners that are attached to Network Load Balancers must use the `TCP` protocol. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -407,6 +409,10 @@ func NewListener(ctx *pulumi.Context, }, }) opts = append(opts, aliases) + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource Listener err := ctx.RegisterResource("aws:lb/listener:Listener", name, args, &resource, opts...) @@ -455,6 +461,8 @@ type listenerState struct { // > **NOTE::** Please note that listeners that are attached to Application Load Balancers must use either `HTTP` or `HTTPS` protocols while listeners that are attached to Network Load Balancers must use the `TCP` protocol. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -484,6 +492,8 @@ type ListenerState struct { // > **NOTE::** Please note that listeners that are attached to Application Load Balancers must use either `HTTP` or `HTTPS` protocols while listeners that are attached to Network Load Balancers must use the `TCP` protocol. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -701,6 +711,8 @@ func (o ListenerOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o ListenerOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *Listener) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listenerRule.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listenerRule.go index dac8bae80..be5b5b4ff 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listenerRule.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/listenerRule.go @@ -269,6 +269,8 @@ type ListenerRule struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` } @@ -294,6 +296,10 @@ func NewListenerRule(ctx *pulumi.Context, }, }) opts = append(opts, aliases) + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource ListenerRule err := ctx.RegisterResource("aws:lb/listenerRule:ListenerRule", name, args, &resource, opts...) @@ -330,6 +336,8 @@ type listenerRuleState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` } @@ -347,6 +355,8 @@ type ListenerRuleState struct { // A map of tags to assign to the resource. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput } @@ -523,6 +533,8 @@ func (o ListenerRuleOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o ListenerRuleOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *ListenerRule) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/loadBalancer.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/loadBalancer.go index 00c847032..823c66878 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/loadBalancer.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/loadBalancer.go @@ -223,6 +223,8 @@ type LoadBalancer struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` VpcId pulumi.StringOutput `pulumi:"vpcId"` // Determines how the load balancer modifies the `X-Forwarded-For` header in the HTTP request before sending the request to the target. The possible values are `append`, `preserve`, and `remove`. Only valid for Load Balancers of type `application`. The default is `append`. @@ -244,6 +246,10 @@ func NewLoadBalancer(ctx *pulumi.Context, }, }) opts = append(opts, aliases) + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource LoadBalancer err := ctx.RegisterResource("aws:lb/loadBalancer:LoadBalancer", name, args, &resource, opts...) @@ -320,6 +326,8 @@ type loadBalancerState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` VpcId *string `pulumi:"vpcId"` // Determines how the load balancer modifies the `X-Forwarded-For` header in the HTTP request before sending the request to the target. The possible values are `append`, `preserve`, and `remove`. Only valid for Load Balancers of type `application`. The default is `append`. @@ -382,6 +390,8 @@ type LoadBalancerState struct { // A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput VpcId pulumi.StringPtrInput // Determines how the load balancer modifies the `X-Forwarded-For` header in the HTTP request before sending the request to the target. The possible values are `append`, `preserve`, and `remove`. Only valid for Load Balancers of type `application`. The default is `append`. @@ -733,6 +743,8 @@ func (o LoadBalancerOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o LoadBalancerOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *LoadBalancer) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/targetGroup.go b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/targetGroup.go index 148ebbf34..2eede0259 100644 --- a/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/targetGroup.go +++ b/vendor/github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lb/targetGroup.go @@ -191,6 +191,8 @@ type TargetGroup struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` // Target failover block. Only applicable for Gateway Load Balancer target groups. See targetFailover for more information. TargetFailovers TargetGroupTargetFailoverArrayOutput `pulumi:"targetFailovers"` @@ -221,6 +223,10 @@ func NewTargetGroup(ctx *pulumi.Context, }, }) opts = append(opts, aliases) + secrets := pulumi.AdditionalSecretOutputs([]string{ + "tagsAll", + }) + opts = append(opts, secrets) opts = internal.PkgResourceDefaultOpts(opts) var resource TargetGroup err := ctx.RegisterResource("aws:lb/targetGroup:TargetGroup", name, args, &resource, opts...) @@ -283,6 +289,8 @@ type targetGroupState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags map[string]string `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll map[string]string `pulumi:"tagsAll"` // Target failover block. Only applicable for Gateway Load Balancer target groups. See targetFailover for more information. TargetFailovers []TargetGroupTargetFailover `pulumi:"targetFailovers"` @@ -340,6 +348,8 @@ type TargetGroupState struct { // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. + // + // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput // Target failover block. Only applicable for Gateway Load Balancer target groups. See targetFailover for more information. TargetFailovers TargetGroupTargetFailoverArrayInput @@ -671,6 +681,8 @@ func (o TargetGroupOutput) Tags() pulumi.StringMapOutput { } // A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. +// +// Deprecated: Please use `tags` instead. func (o TargetGroupOutput) TagsAll() pulumi.StringMapOutput { return o.ApplyT(func(v *TargetGroup) pulumi.StringMapOutput { return v.TagsAll }).(pulumi.StringMapOutput) } diff --git a/vendor/modules.txt b/vendor/modules.txt index 6faa35257..2e8e975f6 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -407,7 +407,7 @@ github.com/pkg/errors # github.com/pkg/term v1.1.0 ## explicit; go 1.14 github.com/pkg/term/termios -# github.com/pulumi/pulumi-aws/sdk/v6 v6.2.0 +# github.com/pulumi/pulumi-aws/sdk/v6 v6.2.1 ## explicit; go 1.21 github.com/pulumi/pulumi-aws/sdk/v6/go/aws/autoscaling github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2