Skip to content

Commit

Permalink
Merge pull request #324 from terraform-cdk-providers/auto/provider-up…
Browse files Browse the repository at this point in the history
…grade

chore: upgrade provider
  • Loading branch information
skorfmann authored May 5, 2021
2 parents b1e2cee + b95ba71 commit 415fd81
Show file tree
Hide file tree
Showing 344 changed files with 15,642 additions and 61 deletions.
7,174 changes: 7,156 additions & 18 deletions API.md

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions src/accessanalyzer-analyzer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import * as cdktf from 'cdktf';
export interface AccessanalyzerAnalyzerConfig extends cdktf.TerraformMetaArguments {
readonly analyzerName: string;
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
readonly type?: string;
}

Expand All @@ -33,6 +34,7 @@ export class AccessanalyzerAnalyzer extends cdktf.TerraformResource {
});
this._analyzerName = config.analyzerName;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._type = config.type;
}

Expand Down Expand Up @@ -79,6 +81,22 @@ export class AccessanalyzerAnalyzer extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// type - computed: false, optional: true, required: false
private _type?: string;
public get type() {
Expand All @@ -103,6 +121,7 @@ export class AccessanalyzerAnalyzer extends cdktf.TerraformResource {
return {
analyzer_name: cdktf.stringToTerraform(this._analyzerName),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
type: cdktf.stringToTerraform(this._type),
};
}
Expand Down
19 changes: 19 additions & 0 deletions src/acm-certificate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export interface AcmCertificateConfig extends cdktf.TerraformMetaArguments {
readonly privateKey?: string;
readonly subjectAlternativeNames?: string[];
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
readonly validationMethod?: string;
/** options block */
readonly options?: AcmCertificateOptions[];
Expand Down Expand Up @@ -78,6 +79,7 @@ export class AcmCertificate extends cdktf.TerraformResource {
this._privateKey = config.privateKey;
this._subjectAlternativeNames = config.subjectAlternativeNames;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._validationMethod = config.validationMethod;
this._options = config.options;
}
Expand Down Expand Up @@ -218,6 +220,22 @@ export class AcmCertificate extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// validation_emails - computed: true, optional: false, required: false
public get validationEmails() {
return this.getListAttribute('validation_emails');
Expand Down Expand Up @@ -268,6 +286,7 @@ export class AcmCertificate extends cdktf.TerraformResource {
private_key: cdktf.stringToTerraform(this._privateKey),
subject_alternative_names: cdktf.listMapper(cdktf.stringToTerraform)(this._subjectAlternativeNames),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
validation_method: cdktf.stringToTerraform(this._validationMethod),
options: cdktf.listMapper(acmCertificateOptionsToTerraform)(this._options),
};
Expand Down
19 changes: 19 additions & 0 deletions src/acmpca-certificate-authority.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export interface AcmpcaCertificateAuthorityConfig extends cdktf.TerraformMetaArg
readonly enabled?: boolean;
readonly permanentDeletionTimeInDays?: number;
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
readonly type?: string;
/** certificate_authority_configuration block */
readonly certificateAuthorityConfiguration: AcmpcaCertificateAuthorityCertificateAuthorityConfiguration[];
Expand Down Expand Up @@ -132,6 +133,7 @@ export class AcmpcaCertificateAuthority extends cdktf.TerraformResource {
this._enabled = config.enabled;
this._permanentDeletionTimeInDays = config.permanentDeletionTimeInDays;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._type = config.type;
this._certificateAuthorityConfiguration = config.certificateAuthorityConfiguration;
this._revocationConfiguration = config.revocationConfiguration;
Expand Down Expand Up @@ -235,6 +237,22 @@ export class AcmpcaCertificateAuthority extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// type - computed: false, optional: true, required: false
private _type?: string;
public get type() {
Expand Down Expand Up @@ -305,6 +323,7 @@ export class AcmpcaCertificateAuthority extends cdktf.TerraformResource {
enabled: cdktf.booleanToTerraform(this._enabled),
permanent_deletion_time_in_days: cdktf.numberToTerraform(this._permanentDeletionTimeInDays),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
type: cdktf.stringToTerraform(this._type),
certificate_authority_configuration: cdktf.listMapper(acmpcaCertificateAuthorityCertificateAuthorityConfigurationToTerraform)(this._certificateAuthorityConfiguration),
revocation_configuration: cdktf.listMapper(acmpcaCertificateAuthorityRevocationConfigurationToTerraform)(this._revocationConfiguration),
Expand Down
19 changes: 19 additions & 0 deletions src/alb-target-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface AlbTargetGroupConfig extends cdktf.TerraformMetaArguments {
readonly proxyProtocolV2?: boolean;
readonly slowStart?: number;
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
readonly targetType?: string;
readonly vpcId?: string;
/** health_check block */
Expand Down Expand Up @@ -100,6 +101,7 @@ export class AlbTargetGroup extends cdktf.TerraformResource {
this._proxyProtocolV2 = config.proxyProtocolV2;
this._slowStart = config.slowStart;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._targetType = config.targetType;
this._vpcId = config.vpcId;
this._healthCheck = config.healthCheck;
Expand Down Expand Up @@ -317,6 +319,22 @@ export class AlbTargetGroup extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// target_type - computed: false, optional: true, required: false
private _targetType?: string;
public get targetType() {
Expand Down Expand Up @@ -399,6 +417,7 @@ export class AlbTargetGroup extends cdktf.TerraformResource {
proxy_protocol_v2: cdktf.booleanToTerraform(this._proxyProtocolV2),
slow_start: cdktf.numberToTerraform(this._slowStart),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
target_type: cdktf.stringToTerraform(this._targetType),
vpc_id: cdktf.stringToTerraform(this._vpcId),
health_check: cdktf.listMapper(albTargetGroupHealthCheckToTerraform)(this._healthCheck),
Expand Down
19 changes: 19 additions & 0 deletions src/alb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export interface AlbConfig extends cdktf.TerraformMetaArguments {
readonly securityGroups?: string[];
readonly subnets?: string[];
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
/** access_logs block */
readonly accessLogs?: AlbAccessLogs[];
/** subnet_mapping block */
Expand Down Expand Up @@ -109,6 +110,7 @@ export class Alb extends cdktf.TerraformResource {
this._securityGroups = config.securityGroups;
this._subnets = config.subnets;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._accessLogs = config.accessLogs;
this._subnetMapping = config.subnetMapping;
this._timeouts = config.timeouts;
Expand Down Expand Up @@ -362,6 +364,22 @@ export class Alb extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// vpc_id - computed: true, optional: false, required: false
public get vpcId() {
return this.getStringAttribute('vpc_id');
Expand Down Expand Up @@ -440,6 +458,7 @@ export class Alb extends cdktf.TerraformResource {
security_groups: cdktf.listMapper(cdktf.stringToTerraform)(this._securityGroups),
subnets: cdktf.listMapper(cdktf.stringToTerraform)(this._subnets),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
access_logs: cdktf.listMapper(albAccessLogsToTerraform)(this._accessLogs),
subnet_mapping: cdktf.listMapper(albSubnetMappingToTerraform)(this._subnetMapping),
timeouts: albTimeoutsToTerraform(this._timeouts),
Expand Down
19 changes: 19 additions & 0 deletions src/ami-copy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export interface AmiCopyConfig extends cdktf.TerraformMetaArguments {
readonly sourceAmiId: string;
readonly sourceAmiRegion: string;
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
/** ebs_block_device block */
readonly ebsBlockDevice?: AmiCopyEbsBlockDevice[];
/** ephemeral_block_device block */
Expand Down Expand Up @@ -81,6 +82,7 @@ export class AmiCopy extends cdktf.TerraformResource {
this._sourceAmiId = config.sourceAmiId;
this._sourceAmiRegion = config.sourceAmiRegion;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._ebsBlockDevice = config.ebsBlockDevice;
this._ephemeralBlockDevice = config.ephemeralBlockDevice;
this._timeouts = config.timeouts;
Expand Down Expand Up @@ -283,6 +285,22 @@ export class AmiCopy extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// usage_operation - computed: true, optional: false, required: false
public get usageOperation() {
return this.getStringAttribute('usage_operation');
Expand Down Expand Up @@ -354,6 +372,7 @@ export class AmiCopy extends cdktf.TerraformResource {
source_ami_id: cdktf.stringToTerraform(this._sourceAmiId),
source_ami_region: cdktf.stringToTerraform(this._sourceAmiRegion),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
ebs_block_device: cdktf.listMapper(amiCopyEbsBlockDeviceToTerraform)(this._ebsBlockDevice),
ephemeral_block_device: cdktf.listMapper(amiCopyEphemeralBlockDeviceToTerraform)(this._ephemeralBlockDevice),
timeouts: amiCopyTimeoutsToTerraform(this._timeouts),
Expand Down
19 changes: 19 additions & 0 deletions src/ami-from-instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export interface AmiFromInstanceConfig extends cdktf.TerraformMetaArguments {
readonly snapshotWithoutReboot?: boolean;
readonly sourceInstanceId: string;
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
/** ebs_block_device block */
readonly ebsBlockDevice?: AmiFromInstanceEbsBlockDevice[];
/** ephemeral_block_device block */
Expand Down Expand Up @@ -77,6 +78,7 @@ export class AmiFromInstance extends cdktf.TerraformResource {
this._snapshotWithoutReboot = config.snapshotWithoutReboot;
this._sourceInstanceId = config.sourceInstanceId;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._ebsBlockDevice = config.ebsBlockDevice;
this._ephemeralBlockDevice = config.ephemeralBlockDevice;
this._timeouts = config.timeouts;
Expand Down Expand Up @@ -250,6 +252,22 @@ export class AmiFromInstance extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// usage_operation - computed: true, optional: false, required: false
public get usageOperation() {
return this.getStringAttribute('usage_operation');
Expand Down Expand Up @@ -319,6 +337,7 @@ export class AmiFromInstance extends cdktf.TerraformResource {
snapshot_without_reboot: cdktf.booleanToTerraform(this._snapshotWithoutReboot),
source_instance_id: cdktf.stringToTerraform(this._sourceInstanceId),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
ebs_block_device: cdktf.listMapper(amiFromInstanceEbsBlockDeviceToTerraform)(this._ebsBlockDevice),
ephemeral_block_device: cdktf.listMapper(amiFromInstanceEphemeralBlockDeviceToTerraform)(this._ephemeralBlockDevice),
timeouts: amiFromInstanceTimeoutsToTerraform(this._timeouts),
Expand Down
19 changes: 19 additions & 0 deletions src/ami.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface AmiConfig extends cdktf.TerraformMetaArguments {
readonly rootDeviceName?: string;
readonly sriovNetSupport?: string;
readonly tags?: { [key: string]: string };
readonly tagsAll?: { [key: string]: string };
readonly virtualizationType?: string;
/** ebs_block_device block */
readonly ebsBlockDevice?: AmiEbsBlockDevice[];
Expand Down Expand Up @@ -108,6 +109,7 @@ export class Ami extends cdktf.TerraformResource {
this._rootDeviceName = config.rootDeviceName;
this._sriovNetSupport = config.sriovNetSupport;
this._tags = config.tags;
this._tagsAll = config.tagsAll;
this._virtualizationType = config.virtualizationType;
this._ebsBlockDevice = config.ebsBlockDevice;
this._ephemeralBlockDevice = config.ephemeralBlockDevice;
Expand Down Expand Up @@ -330,6 +332,22 @@ export class Ami extends cdktf.TerraformResource {
return this._tags
}

// tags_all - computed: true, optional: true, required: false
private _tagsAll?: { [key: string]: string }
public get tagsAll(): { [key: string]: string } {
return this.interpolationForAttribute('tags_all') as any; // Getting the computed value is not yet implemented
}
public set tagsAll(value: { [key: string]: string }) {
this._tagsAll = value;
}
public resetTagsAll() {
this._tagsAll = undefined;
}
// Temporarily expose input value. Use with caution.
public get tagsAllInput() {
return this._tagsAll
}

// usage_operation - computed: true, optional: false, required: false
public get usageOperation() {
return this.getStringAttribute('usage_operation');
Expand Down Expand Up @@ -415,6 +433,7 @@ export class Ami extends cdktf.TerraformResource {
root_device_name: cdktf.stringToTerraform(this._rootDeviceName),
sriov_net_support: cdktf.stringToTerraform(this._sriovNetSupport),
tags: cdktf.hashMapper(cdktf.anyToTerraform)(this._tags),
tags_all: cdktf.hashMapper(cdktf.anyToTerraform)(this._tagsAll),
virtualization_type: cdktf.stringToTerraform(this._virtualizationType),
ebs_block_device: cdktf.listMapper(amiEbsBlockDeviceToTerraform)(this._ebsBlockDevice),
ephemeral_block_device: cdktf.listMapper(amiEphemeralBlockDeviceToTerraform)(this._ephemeralBlockDevice),
Expand Down
Loading

0 comments on commit 415fd81

Please sign in to comment.