diff --git a/package.json b/package.json index 8b38981a..0f79953b 100644 --- a/package.json +++ b/package.json @@ -110,7 +110,7 @@ "cdktf": { "provider": { "name": "registry.terraform.io/vancluever/acme", - "version": "2.10.0" + "version": "2.11.1" } }, "resolutions": { diff --git a/src/certificate/index.ts b/src/certificate/index.ts index 8ca70b56..2970bed6 100644 --- a/src/certificate/index.ts +++ b/src/certificate/index.ts @@ -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, @@ -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'); diff --git a/src/provider/index.ts b/src/provider/index.ts index e995806c..51a565bb 100644 --- a/src/provider/index.ts +++ b/src/provider/index.ts @@ -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' diff --git a/src/registration/index.ts b/src/registration/index.ts index 852ebbba..e334d264 100644 --- a/src/registration/index.ts +++ b/src/registration/index.ts @@ -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, diff --git a/src/version.json b/src/version.json index f4aebbbc..c2847273 100644 --- a/src/version.json +++ b/src/version.json @@ -1,3 +1,3 @@ { - "registry.terraform.io/vancluever/acme": "2.10.0" + "registry.terraform.io/vancluever/acme": "2.11.1" }