Skip to content

Commit

Permalink
Merge pull request #421 from cdktf/auto/provider-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
team-tf-cdk authored Oct 9, 2022
2 parents ad43860 + effc78a commit a43b982
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src/certificate/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export class Certificate extends cdktf.TerraformResource {
terraformResourceType: 'acme_certificate',
terraformGeneratorMetadata: {
providerName: 'acme',
providerVersion: '2.10.0',
providerVersion: '2.11.1',
providerVersionConstraint: '~> 2.10'
},
provider: config.provider,
Expand Down Expand Up @@ -580,6 +580,11 @@ export class Certificate extends cdktf.TerraformResource {
return this.getStringAttribute('certificate_domain');
}

// certificate_not_after - computed: true, optional: false, required: false
public get certificateNotAfter() {
return this.getStringAttribute('certificate_not_after');
}

// certificate_p12 - computed: true, optional: false, required: false
public get certificateP12() {
return this.getStringAttribute('certificate_p12');
Expand Down
2 changes: 1 addition & 1 deletion src/provider/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class AcmeProvider extends cdktf.TerraformProvider {
terraformResourceType: 'acme',
terraformGeneratorMetadata: {
providerName: 'acme',
providerVersion: '2.10.0',
providerVersion: '2.11.1',
providerVersionConstraint: '~> 2.10'
},
terraformProviderSource: 'vancluever/acme'
Expand Down
2 changes: 1 addition & 1 deletion src/registration/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class Registration extends cdktf.TerraformResource {
terraformResourceType: 'acme_registration',
terraformGeneratorMetadata: {
providerName: 'acme',
providerVersion: '2.10.0',
providerVersion: '2.11.1',
providerVersionConstraint: '~> 2.10'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"registry.terraform.io/vancluever/acme": "2.10.0"
"registry.terraform.io/vancluever/acme": "2.11.1"
}

0 comments on commit a43b982

Please sign in to comment.