@cdktf/provider-acme 12.5.0 → 12.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +65 -65
 - package/README.md +3 -3
 - package/lib/certificate/index.d.ts +37 -37
 - package/lib/certificate/index.js +13 -13
 - package/lib/data-acme-server-url/index.d.ts +4 -4
 - package/lib/data-acme-server-url/index.js +6 -6
 - package/lib/provider/index.d.ts +5 -5
 - package/lib/provider/index.js +6 -6
 - package/lib/registration/index.d.ts +12 -12
 - package/lib/registration/index.js +7 -7
 - package/package.json +5 -5
 
| 
         @@ -6,134 +6,134 @@ import { Construct } from 'constructs'; 
     | 
|
| 
       6 
6 
     | 
    
         
             
            import * as cdktf from 'cdktf';
         
     | 
| 
       7 
7 
     | 
    
         
             
            export interface CertificateConfig extends cdktf.TerraformMetaArguments {
         
     | 
| 
       8 
8 
     | 
    
         
             
                /**
         
     | 
| 
       9 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 9 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#account_key_pem Certificate#account_key_pem}
         
     | 
| 
       10 
10 
     | 
    
         
             
                */
         
     | 
| 
       11 
11 
     | 
    
         
             
                readonly accountKeyPem: string;
         
     | 
| 
       12 
12 
     | 
    
         
             
                /**
         
     | 
| 
       13 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 13 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}
         
     | 
| 
       14 
14 
     | 
    
         
             
                */
         
     | 
| 
       15 
15 
     | 
    
         
             
                readonly certTimeout?: number;
         
     | 
| 
       16 
16 
     | 
    
         
             
                /**
         
     | 
| 
       17 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 17 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}
         
     | 
| 
       18 
18 
     | 
    
         
             
                */
         
     | 
| 
       19 
19 
     | 
    
         
             
                readonly certificateP12Password?: string;
         
     | 
| 
       20 
20 
     | 
    
         
             
                /**
         
     | 
| 
       21 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 21 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
         
     | 
| 
       22 
22 
     | 
    
         
             
                */
         
     | 
| 
       23 
23 
     | 
    
         
             
                readonly certificateRequestPem?: string;
         
     | 
| 
       24 
24 
     | 
    
         
             
                /**
         
     | 
| 
       25 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 25 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#common_name Certificate#common_name}
         
     | 
| 
       26 
26 
     | 
    
         
             
                */
         
     | 
| 
       27 
27 
     | 
    
         
             
                readonly commonName?: string;
         
     | 
| 
       28 
28 
     | 
    
         
             
                /**
         
     | 
| 
       29 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 29 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
         
     | 
| 
       30 
30 
     | 
    
         
             
                */
         
     | 
| 
       31 
31 
     | 
    
         
             
                readonly disableCompletePropagation?: boolean | cdktf.IResolvable;
         
     | 
| 
       32 
32 
     | 
    
         
             
                /**
         
     | 
| 
       33 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 33 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#id Certificate#id}
         
     | 
| 
       34 
34 
     | 
    
         
             
                *
         
     | 
| 
       35 
35 
     | 
    
         
             
                * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
         
     | 
| 
       36 
36 
     | 
    
         
             
                * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
         
     | 
| 
       37 
37 
     | 
    
         
             
                */
         
     | 
| 
       38 
38 
     | 
    
         
             
                readonly id?: string;
         
     | 
| 
       39 
39 
     | 
    
         
             
                /**
         
     | 
| 
       40 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 40 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#key_type Certificate#key_type}
         
     | 
| 
       41 
41 
     | 
    
         
             
                */
         
     | 
| 
       42 
42 
     | 
    
         
             
                readonly keyType?: string;
         
     | 
| 
       43 
43 
     | 
    
         
             
                /**
         
     | 
| 
       44 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 44 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
         
     | 
| 
       45 
45 
     | 
    
         
             
                */
         
     | 
| 
       46 
46 
     | 
    
         
             
                readonly minDaysRemaining?: number;
         
     | 
| 
       47 
47 
     | 
    
         
             
                /**
         
     | 
| 
       48 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 48 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#must_staple Certificate#must_staple}
         
     | 
| 
       49 
49 
     | 
    
         
             
                */
         
     | 
| 
       50 
50 
     | 
    
         
             
                readonly mustStaple?: boolean | cdktf.IResolvable;
         
     | 
| 
       51 
51 
     | 
    
         
             
                /**
         
     | 
| 
       52 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 52 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
         
     | 
| 
       53 
53 
     | 
    
         
             
                */
         
     | 
| 
       54 
54 
     | 
    
         
             
                readonly preCheckDelay?: number;
         
     | 
| 
       55 
55 
     | 
    
         
             
                /**
         
     | 
| 
       56 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 56 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
         
     | 
| 
       57 
57 
     | 
    
         
             
                */
         
     | 
| 
       58 
58 
     | 
    
         
             
                readonly preferredChain?: string;
         
     | 
| 
       59 
59 
     | 
    
         
             
                /**
         
     | 
| 
       60 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 60 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#profile Certificate#profile}
         
     | 
| 
       61 
61 
     | 
    
         
             
                */
         
     | 
| 
       62 
62 
     | 
    
         
             
                readonly profile?: string;
         
     | 
| 
       63 
63 
     | 
    
         
             
                /**
         
     | 
| 
       64 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 64 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
         
     | 
| 
       65 
65 
     | 
    
         
             
                */
         
     | 
| 
       66 
66 
     | 
    
         
             
                readonly recursiveNameservers?: string[];
         
     | 
| 
       67 
67 
     | 
    
         
             
                /**
         
     | 
| 
       68 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 68 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#renewal_info_ignore_retry_after Certificate#renewal_info_ignore_retry_after}
         
     | 
| 
       69 
69 
     | 
    
         
             
                */
         
     | 
| 
       70 
70 
     | 
    
         
             
                readonly renewalInfoIgnoreRetryAfter?: boolean | cdktf.IResolvable;
         
     | 
| 
       71 
71 
     | 
    
         
             
                /**
         
     | 
| 
       72 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 72 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#renewal_info_max_sleep Certificate#renewal_info_max_sleep}
         
     | 
| 
       73 
73 
     | 
    
         
             
                */
         
     | 
| 
       74 
74 
     | 
    
         
             
                readonly renewalInfoMaxSleep?: number;
         
     | 
| 
       75 
75 
     | 
    
         
             
                /**
         
     | 
| 
       76 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 76 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
         
     | 
| 
       77 
77 
     | 
    
         
             
                */
         
     | 
| 
       78 
78 
     | 
    
         
             
                readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
         
     | 
| 
       79 
79 
     | 
    
         
             
                /**
         
     | 
| 
       80 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 80 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}
         
     | 
| 
       81 
81 
     | 
    
         
             
                */
         
     | 
| 
       82 
82 
     | 
    
         
             
                readonly revokeCertificateReason?: string;
         
     | 
| 
       83 
83 
     | 
    
         
             
                /**
         
     | 
| 
       84 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 84 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
         
     | 
| 
       85 
85 
     | 
    
         
             
                */
         
     | 
| 
       86 
86 
     | 
    
         
             
                readonly subjectAlternativeNames?: string[];
         
     | 
| 
       87 
87 
     | 
    
         
             
                /**
         
     | 
| 
       88 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 88 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#use_renewal_info Certificate#use_renewal_info}
         
     | 
| 
       89 
89 
     | 
    
         
             
                */
         
     | 
| 
       90 
90 
     | 
    
         
             
                readonly useRenewalInfo?: boolean | cdktf.IResolvable;
         
     | 
| 
       91 
91 
     | 
    
         
             
                /**
         
     | 
| 
       92 
92 
     | 
    
         
             
                * dns_challenge block
         
     | 
| 
       93 
93 
     | 
    
         
             
                *
         
     | 
| 
       94 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 94 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
         
     | 
| 
       95 
95 
     | 
    
         
             
                */
         
     | 
| 
       96 
96 
     | 
    
         
             
                readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
         
     | 
| 
       97 
97 
     | 
    
         
             
                /**
         
     | 
| 
       98 
98 
     | 
    
         
             
                * http_challenge block
         
     | 
| 
       99 
99 
     | 
    
         
             
                *
         
     | 
| 
       100 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 100 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
         
     | 
| 
       101 
101 
     | 
    
         
             
                */
         
     | 
| 
       102 
102 
     | 
    
         
             
                readonly httpChallenge?: CertificateHttpChallenge;
         
     | 
| 
       103 
103 
     | 
    
         
             
                /**
         
     | 
| 
       104 
104 
     | 
    
         
             
                * http_memcached_challenge block
         
     | 
| 
       105 
105 
     | 
    
         
             
                *
         
     | 
| 
       106 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 106 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
         
     | 
| 
       107 
107 
     | 
    
         
             
                */
         
     | 
| 
       108 
108 
     | 
    
         
             
                readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
         
     | 
| 
       109 
109 
     | 
    
         
             
                /**
         
     | 
| 
       110 
110 
     | 
    
         
             
                * http_s3_challenge block
         
     | 
| 
       111 
111 
     | 
    
         
             
                *
         
     | 
| 
       112 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 112 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
         
     | 
| 
       113 
113 
     | 
    
         
             
                */
         
     | 
| 
       114 
114 
     | 
    
         
             
                readonly httpS3Challenge?: CertificateHttpS3Challenge;
         
     | 
| 
       115 
115 
     | 
    
         
             
                /**
         
     | 
| 
       116 
116 
     | 
    
         
             
                * http_webroot_challenge block
         
     | 
| 
       117 
117 
     | 
    
         
             
                *
         
     | 
| 
       118 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 118 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
         
     | 
| 
       119 
119 
     | 
    
         
             
                */
         
     | 
| 
       120 
120 
     | 
    
         
             
                readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
         
     | 
| 
       121 
121 
     | 
    
         
             
                /**
         
     | 
| 
       122 
122 
     | 
    
         
             
                * tls_challenge block
         
     | 
| 
       123 
123 
     | 
    
         
             
                *
         
     | 
| 
       124 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 124 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
         
     | 
| 
       125 
125 
     | 
    
         
             
                */
         
     | 
| 
       126 
126 
     | 
    
         
             
                readonly tlsChallenge?: CertificateTlsChallenge;
         
     | 
| 
       127 
127 
     | 
    
         
             
            }
         
     | 
| 
       128 
128 
     | 
    
         
             
            export interface CertificateDnsChallenge {
         
     | 
| 
       129 
129 
     | 
    
         
             
                /**
         
     | 
| 
       130 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 130 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#config Certificate#config}
         
     | 
| 
       131 
131 
     | 
    
         
             
                */
         
     | 
| 
       132 
132 
     | 
    
         
             
                readonly config?: {
         
     | 
| 
       133 
133 
     | 
    
         
             
                    [key: string]: string;
         
     | 
| 
       134 
134 
     | 
    
         
             
                };
         
     | 
| 
       135 
135 
     | 
    
         
             
                /**
         
     | 
| 
       136 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 136 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#provider Certificate#provider}
         
     | 
| 
       137 
137 
     | 
    
         
             
                */
         
     | 
| 
       138 
138 
     | 
    
         
             
                readonly provider: string;
         
     | 
| 
       139 
139 
     | 
    
         
             
            }
         
     | 
| 
         @@ -185,11 +185,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList { 
     | 
|
| 
       185 
185 
     | 
    
         
             
            }
         
     | 
| 
       186 
186 
     | 
    
         
             
            export interface CertificateHttpChallenge {
         
     | 
| 
       187 
187 
     | 
    
         
             
                /**
         
     | 
| 
       188 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 188 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#port Certificate#port}
         
     | 
| 
       189 
189 
     | 
    
         
             
                */
         
     | 
| 
       190 
190 
     | 
    
         
             
                readonly port?: number;
         
     | 
| 
       191 
191 
     | 
    
         
             
                /**
         
     | 
| 
       192 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 192 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
         
     | 
| 
       193 
193 
     | 
    
         
             
                */
         
     | 
| 
       194 
194 
     | 
    
         
             
                readonly proxyHeader?: string;
         
     | 
| 
       195 
195 
     | 
    
         
             
            }
         
     | 
| 
         @@ -217,7 +217,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl 
     | 
|
| 
       217 
217 
     | 
    
         
             
            }
         
     | 
| 
       218 
218 
     | 
    
         
             
            export interface CertificateHttpMemcachedChallenge {
         
     | 
| 
       219 
219 
     | 
    
         
             
                /**
         
     | 
| 
       220 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 220 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#hosts Certificate#hosts}
         
     | 
| 
       221 
221 
     | 
    
         
             
                */
         
     | 
| 
       222 
222 
     | 
    
         
             
                readonly hosts: string[];
         
     | 
| 
       223 
223 
     | 
    
         
             
            }
         
     | 
| 
         @@ -239,7 +239,7 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd 
     | 
|
| 
       239 
239 
     | 
    
         
             
            }
         
     | 
| 
       240 
240 
     | 
    
         
             
            export interface CertificateHttpS3Challenge {
         
     | 
| 
       241 
241 
     | 
    
         
             
                /**
         
     | 
| 
       242 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 242 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
         
     | 
| 
       243 
243 
     | 
    
         
             
                */
         
     | 
| 
       244 
244 
     | 
    
         
             
                readonly s3Bucket: string;
         
     | 
| 
       245 
245 
     | 
    
         
             
            }
         
     | 
| 
         @@ -261,7 +261,7 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com 
     | 
|
| 
       261 
261 
     | 
    
         
             
            }
         
     | 
| 
       262 
262 
     | 
    
         
             
            export interface CertificateHttpWebrootChallenge {
         
     | 
| 
       263 
263 
     | 
    
         
             
                /**
         
     | 
| 
       264 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 264 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#directory Certificate#directory}
         
     | 
| 
       265 
265 
     | 
    
         
             
                */
         
     | 
| 
       266 
266 
     | 
    
         
             
                readonly directory: string;
         
     | 
| 
       267 
267 
     | 
    
         
             
            }
         
     | 
| 
         @@ -283,7 +283,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt 
     | 
|
| 
       283 
283 
     | 
    
         
             
            }
         
     | 
| 
       284 
284 
     | 
    
         
             
            export interface CertificateTlsChallenge {
         
     | 
| 
       285 
285 
     | 
    
         
             
                /**
         
     | 
| 
       286 
     | 
    
         
            -
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 286 
     | 
    
         
            +
                * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#port Certificate#port}
         
     | 
| 
       287 
287 
     | 
    
         
             
                */
         
     | 
| 
       288 
288 
     | 
    
         
             
                readonly port?: number;
         
     | 
| 
       289 
289 
     | 
    
         
             
            }
         
     | 
| 
         @@ -305,7 +305,7 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple 
     | 
|
| 
       305 
305 
     | 
    
         
             
                get portInput(): number | undefined;
         
     | 
| 
       306 
306 
     | 
    
         
             
            }
         
     | 
| 
       307 
307 
     | 
    
         
             
            /**
         
     | 
| 
       308 
     | 
    
         
            -
            * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 308 
     | 
    
         
            +
            * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate acme_certificate}
         
     | 
| 
       309 
309 
     | 
    
         
             
            */
         
     | 
| 
       310 
310 
     | 
    
         
             
            export declare class Certificate extends cdktf.TerraformResource {
         
     | 
| 
       311 
311 
     | 
    
         
             
                static readonly tfResourceType = "acme_certificate";
         
     | 
| 
         @@ -313,12 +313,12 @@ export declare class Certificate extends cdktf.TerraformResource { 
     | 
|
| 
       313 
313 
     | 
    
         
             
                * Generates CDKTF code for importing a Certificate resource upon running "cdktf plan <stack-name>"
         
     | 
| 
       314 
314 
     | 
    
         
             
                * @param scope The scope in which to define this construct
         
     | 
| 
       315 
315 
     | 
    
         
             
                * @param importToId The construct id used in the generated config for the Certificate to import
         
     | 
| 
       316 
     | 
    
         
            -
                * @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 316 
     | 
    
         
            +
                * @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
         
     | 
| 
       317 
317 
     | 
    
         
             
                * @param provider? Optional instance of the provider where the Certificate to import is found
         
     | 
| 
       318 
318 
     | 
    
         
             
                */
         
     | 
| 
       319 
319 
     | 
    
         
             
                static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
         
     | 
| 
       320 
320 
     | 
    
         
             
                /**
         
     | 
| 
       321 
     | 
    
         
            -
                * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2. 
     | 
| 
      
 321 
     | 
    
         
            +
                * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.38.0/docs/resources/certificate acme_certificate} Resource
         
     | 
| 
       322 
322 
     | 
    
         
             
                *
         
     | 
| 
       323 
323 
     | 
    
         
             
                * @param scope The scope in which to define this construct
         
     | 
| 
       324 
324 
     | 
    
         
             
                * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
         
     |