@cdktf-providers/astronomer-astro 1.0.8 → 1.0.9
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/README.md +3 -3
- package/dist/alert/index.d.ts +34 -34
- package/dist/alert/index.js +6 -6
- package/dist/api-token/index.d.ts +11 -11
- package/dist/api-token/index.js +6 -6
- package/dist/cluster/index.d.ts +16 -16
- package/dist/cluster/index.js +6 -6
- package/dist/data-astro-alert/index.d.ts +5 -5
- package/dist/data-astro-alert/index.js +6 -6
- package/dist/data-astro-alerts/index.d.ts +9 -9
- package/dist/data-astro-alerts/index.js +6 -6
- package/dist/data-astro-api-token/index.d.ts +4 -4
- package/dist/data-astro-api-token/index.js +6 -6
- package/dist/data-astro-api-tokens/index.d.ts +7 -7
- package/dist/data-astro-api-tokens/index.js +6 -6
- package/dist/data-astro-cluster/index.d.ts +4 -4
- package/dist/data-astro-cluster/index.js +6 -6
- package/dist/data-astro-cluster-options/index.d.ts +5 -5
- package/dist/data-astro-cluster-options/index.js +6 -6
- package/dist/data-astro-clusters/index.d.ts +6 -6
- package/dist/data-astro-clusters/index.js +6 -6
- package/dist/data-astro-deployment/index.d.ts +4 -4
- package/dist/data-astro-deployment/index.js +6 -6
- package/dist/data-astro-deployment-options/index.d.ts +7 -7
- package/dist/data-astro-deployment-options/index.js +6 -6
- package/dist/data-astro-deployments/index.d.ts +7 -7
- package/dist/data-astro-deployments/index.js +6 -6
- package/dist/data-astro-notification-channel/index.d.ts +4 -4
- package/dist/data-astro-notification-channel/index.js +6 -6
- package/dist/data-astro-notification-channels/index.d.ts +9 -9
- package/dist/data-astro-notification-channels/index.js +6 -6
- package/dist/data-astro-organization/index.d.ts +3 -3
- package/dist/data-astro-organization/index.js +6 -6
- package/dist/data-astro-team/index.d.ts +4 -4
- package/dist/data-astro-team/index.js +6 -6
- package/dist/data-astro-teams/index.d.ts +5 -5
- package/dist/data-astro-teams/index.js +6 -6
- package/dist/data-astro-user/index.d.ts +4 -4
- package/dist/data-astro-user/index.js +6 -6
- package/dist/data-astro-users/index.d.ts +6 -6
- package/dist/data-astro-users/index.js +6 -6
- package/dist/data-astro-workspace/index.d.ts +4 -4
- package/dist/data-astro-workspace/index.js +6 -6
- package/dist/data-astro-workspaces/index.d.ts +6 -6
- package/dist/data-astro-workspaces/index.js +6 -6
- package/dist/deployment/index.d.ts +53 -53
- package/dist/deployment/index.js +6 -6
- package/dist/hybrid-cluster-workspace-authorization/index.d.ts +5 -5
- package/dist/hybrid-cluster-workspace-authorization/index.js +6 -6
- package/dist/notification-channel/index.d.ts +16 -16
- package/dist/notification-channel/index.js +6 -6
- package/dist/provider/index.d.ts +7 -7
- package/dist/provider/index.js +6 -6
- package/dist/team/index.d.ts +13 -13
- package/dist/team/index.js +6 -6
- package/dist/team-roles/index.d.ts +11 -11
- package/dist/team-roles/index.js +6 -6
- package/dist/user-invite/index.d.ts +5 -5
- package/dist/user-invite/index.js +6 -6
- package/dist/user-roles/index.d.ts +11 -11
- package/dist/user-roles/index.js +6 -6
- package/dist/workspace/index.d.ts +6 -6
- package/dist/workspace/index.js +6 -6
- package/package.json +2 -2
|
@@ -4,163 +4,163 @@ export interface DeploymentConfig extends cdktf.TerraformMetaArguments {
|
|
|
4
4
|
/**
|
|
5
5
|
* Deployment cloud provider - required for 'STANDARD' deployments. If changing this value, the deployment will be recreated in the new cloud provider
|
|
6
6
|
*
|
|
7
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#cloud_provider Deployment#cloud_provider}
|
|
8
8
|
*/
|
|
9
9
|
readonly cloudProvider?: string;
|
|
10
10
|
/**
|
|
11
11
|
* Deployment cluster identifier - required for 'HYBRID' and 'DEDICATED' deployments. If changing this value, the deployment will be recreated in the new cluster
|
|
12
12
|
*
|
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#cluster_id Deployment#cluster_id}
|
|
14
14
|
*/
|
|
15
15
|
readonly clusterId?: string;
|
|
16
16
|
/**
|
|
17
17
|
* Deployment contact emails
|
|
18
18
|
*
|
|
19
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
19
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#contact_emails Deployment#contact_emails}
|
|
20
20
|
*/
|
|
21
21
|
readonly contactEmails: string[];
|
|
22
22
|
/**
|
|
23
23
|
* Deployment default task pod CPU - required for 'STANDARD' and 'DEDICATED' deployments
|
|
24
24
|
*
|
|
25
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
25
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#default_task_pod_cpu Deployment#default_task_pod_cpu}
|
|
26
26
|
*/
|
|
27
27
|
readonly defaultTaskPodCpu?: string;
|
|
28
28
|
/**
|
|
29
29
|
* Deployment default task pod memory - required for 'STANDARD' and 'DEDICATED' deployments
|
|
30
30
|
*
|
|
31
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
31
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#default_task_pod_memory Deployment#default_task_pod_memory}
|
|
32
32
|
*/
|
|
33
33
|
readonly defaultTaskPodMemory?: string;
|
|
34
34
|
/**
|
|
35
35
|
* Deployment description
|
|
36
36
|
*
|
|
37
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
37
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#description Deployment#description}
|
|
38
38
|
*/
|
|
39
39
|
readonly description: string;
|
|
40
40
|
/**
|
|
41
41
|
* Deployment's desired workload identity. The Terraform provider will use this provided workload identity to create the Deployment. If it is not provided the workload identity will be assigned automatically.
|
|
42
42
|
*
|
|
43
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
43
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#desired_workload_identity Deployment#desired_workload_identity}
|
|
44
44
|
*/
|
|
45
45
|
readonly desiredWorkloadIdentity?: string;
|
|
46
46
|
/**
|
|
47
47
|
* Deployment environment variables
|
|
48
48
|
*
|
|
49
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
49
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#environment_variables Deployment#environment_variables}
|
|
50
50
|
*/
|
|
51
51
|
readonly environmentVariables: DeploymentEnvironmentVariables[] | cdktf.IResolvable;
|
|
52
52
|
/**
|
|
53
53
|
* Deployment executor. Valid values: CELERY, KUBERNETES, ASTRO.
|
|
54
54
|
*
|
|
55
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
55
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#executor Deployment#executor}
|
|
56
56
|
*/
|
|
57
57
|
readonly executor: string;
|
|
58
58
|
/**
|
|
59
59
|
* Deployment CI/CD enforced
|
|
60
60
|
*
|
|
61
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
61
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_cicd_enforced Deployment#is_cicd_enforced}
|
|
62
62
|
*/
|
|
63
63
|
readonly isCicdEnforced: boolean | cdktf.IResolvable;
|
|
64
64
|
/**
|
|
65
65
|
* Whether DAG deploy is enabled - Changing this value may disrupt your deployment. Read more at https://docs.astronomer.io/astro/deploy-dags#enable-or-disable-dag-only-deploys-on-a-deployment
|
|
66
66
|
*
|
|
67
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
67
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_dag_deploy_enabled Deployment#is_dag_deploy_enabled}
|
|
68
68
|
*/
|
|
69
69
|
readonly isDagDeployEnabled: boolean | cdktf.IResolvable;
|
|
70
70
|
/**
|
|
71
71
|
* Deployment development mode - required for 'STANDARD' and 'DEDICATED' deployments. If changing from 'False' to 'True', the deployment will be recreated
|
|
72
72
|
*
|
|
73
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
73
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_development_mode Deployment#is_development_mode}
|
|
74
74
|
*/
|
|
75
75
|
readonly isDevelopmentMode?: boolean | cdktf.IResolvable;
|
|
76
76
|
/**
|
|
77
77
|
* Deployment high availability - required for 'STANDARD' and 'DEDICATED' deployments
|
|
78
78
|
*
|
|
79
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
79
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_high_availability Deployment#is_high_availability}
|
|
80
80
|
*/
|
|
81
81
|
readonly isHighAvailability?: boolean | cdktf.IResolvable;
|
|
82
82
|
/**
|
|
83
83
|
* Deployment name
|
|
84
84
|
*
|
|
85
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
85
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#name Deployment#name}
|
|
86
86
|
*/
|
|
87
87
|
readonly name: string;
|
|
88
88
|
/**
|
|
89
89
|
* Deployment's original Astro Runtime version. The Terraform provider will use this provided Astro runtime version to create the Deployment. The Astro runtime version can be updated with your Astro project Dockerfile, but if this value is changed, the Deployment will be recreated with this new Astro runtime version.
|
|
90
90
|
*
|
|
91
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
91
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#original_astro_runtime_version Deployment#original_astro_runtime_version}
|
|
92
92
|
*/
|
|
93
93
|
readonly originalAstroRuntimeVersion?: string;
|
|
94
94
|
/**
|
|
95
95
|
* Deployment region - required for 'STANDARD' deployments. If changing this value, the deployment will be recreated in the new region
|
|
96
96
|
*
|
|
97
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
97
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#region Deployment#region}
|
|
98
98
|
*/
|
|
99
99
|
readonly region?: string;
|
|
100
100
|
/**
|
|
101
101
|
* Deployment remote execution configuration - only for 'DEDICATED' deployments
|
|
102
102
|
*
|
|
103
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
103
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#remote_execution Deployment#remote_execution}
|
|
104
104
|
*/
|
|
105
105
|
readonly remoteExecution?: DeploymentRemoteExecution;
|
|
106
106
|
/**
|
|
107
107
|
* Deployment resource quota CPU - required for 'STANDARD' and 'DEDICATED' deployments
|
|
108
108
|
*
|
|
109
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
109
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#resource_quota_cpu Deployment#resource_quota_cpu}
|
|
110
110
|
*/
|
|
111
111
|
readonly resourceQuotaCpu?: string;
|
|
112
112
|
/**
|
|
113
113
|
* Deployment resource quota memory - required for 'STANDARD' and 'DEDICATED' deployments
|
|
114
114
|
*
|
|
115
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
115
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#resource_quota_memory Deployment#resource_quota_memory}
|
|
116
116
|
*/
|
|
117
117
|
readonly resourceQuotaMemory?: string;
|
|
118
118
|
/**
|
|
119
119
|
* Deployment scaling spec - only for 'STANDARD' and 'DEDICATED' deployments
|
|
120
120
|
*
|
|
121
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
121
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#scaling_spec Deployment#scaling_spec}
|
|
122
122
|
*/
|
|
123
123
|
readonly scalingSpec?: DeploymentScalingSpec;
|
|
124
124
|
/**
|
|
125
125
|
* Deployment scheduler AU - required for 'HYBRID' deployments
|
|
126
126
|
*
|
|
127
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
127
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#scheduler_au Deployment#scheduler_au}
|
|
128
128
|
*/
|
|
129
129
|
readonly schedulerAu?: number;
|
|
130
130
|
/**
|
|
131
131
|
* Deployment scheduler replicas - required for 'HYBRID' deployments
|
|
132
132
|
*
|
|
133
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#scheduler_replicas Deployment#scheduler_replicas}
|
|
134
134
|
*/
|
|
135
135
|
readonly schedulerReplicas?: number;
|
|
136
136
|
/**
|
|
137
137
|
* Deployment scheduler size - required for 'STANDARD' and 'DEDICATED' deployments
|
|
138
138
|
*
|
|
139
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
139
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#scheduler_size Deployment#scheduler_size}
|
|
140
140
|
*/
|
|
141
141
|
readonly schedulerSize?: string;
|
|
142
142
|
/**
|
|
143
143
|
* Deployment task pod node pool identifier - required if executor is 'KUBERNETES' and type is 'HYBRID'
|
|
144
144
|
*
|
|
145
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
145
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#task_pod_node_pool_id Deployment#task_pod_node_pool_id}
|
|
146
146
|
*/
|
|
147
147
|
readonly taskPodNodePoolId?: string;
|
|
148
148
|
/**
|
|
149
149
|
* Deployment type - if changing this value, the deployment will be recreated with the new type
|
|
150
150
|
*
|
|
151
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
151
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#type Deployment#type}
|
|
152
152
|
*/
|
|
153
153
|
readonly type: string;
|
|
154
154
|
/**
|
|
155
155
|
* Deployment worker queues - required for deployments with 'CELERY' executor. For 'STANDARD' and 'DEDICATED' deployments, use astro_machine. For 'HYBRID' deployments, use node_pool_id.
|
|
156
156
|
*
|
|
157
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
157
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#worker_queues Deployment#worker_queues}
|
|
158
158
|
*/
|
|
159
159
|
readonly workerQueues?: DeploymentWorkerQueues[] | cdktf.IResolvable;
|
|
160
160
|
/**
|
|
161
161
|
* Deployment workspace identifier - if changing this value, the deployment will be recreated in the new workspace
|
|
162
162
|
*
|
|
163
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
163
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#workspace_id Deployment#workspace_id}
|
|
164
164
|
*/
|
|
165
165
|
readonly workspaceId: string;
|
|
166
166
|
}
|
|
@@ -188,19 +188,19 @@ export interface DeploymentEnvironmentVariables {
|
|
|
188
188
|
/**
|
|
189
189
|
* Whether Environment variable is a secret
|
|
190
190
|
*
|
|
191
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
191
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_secret Deployment#is_secret}
|
|
192
192
|
*/
|
|
193
193
|
readonly isSecret: boolean | cdktf.IResolvable;
|
|
194
194
|
/**
|
|
195
195
|
* Environment variable key
|
|
196
196
|
*
|
|
197
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
197
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#key Deployment#key}
|
|
198
198
|
*/
|
|
199
199
|
readonly key: string;
|
|
200
200
|
/**
|
|
201
201
|
* Environment variable value
|
|
202
202
|
*
|
|
203
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
203
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#value Deployment#value}
|
|
204
204
|
*/
|
|
205
205
|
readonly value?: string;
|
|
206
206
|
}
|
|
@@ -253,25 +253,25 @@ export interface DeploymentRemoteExecution {
|
|
|
253
253
|
/**
|
|
254
254
|
* The allowed IP address ranges for remote execution
|
|
255
255
|
*
|
|
256
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
256
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#allowed_ip_address_ranges Deployment#allowed_ip_address_ranges}
|
|
257
257
|
*/
|
|
258
258
|
readonly allowedIpAddressRanges?: string[];
|
|
259
259
|
/**
|
|
260
260
|
* Whether remote execution is enabled
|
|
261
261
|
*
|
|
262
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
262
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#enabled Deployment#enabled}
|
|
263
263
|
*/
|
|
264
264
|
readonly enabled: boolean | cdktf.IResolvable;
|
|
265
265
|
/**
|
|
266
266
|
* The bucket for task logs
|
|
267
267
|
*
|
|
268
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
268
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#task_log_bucket Deployment#task_log_bucket}
|
|
269
269
|
*/
|
|
270
270
|
readonly taskLogBucket?: string;
|
|
271
271
|
/**
|
|
272
272
|
* The URL pattern for task logs
|
|
273
273
|
*
|
|
274
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
274
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#task_log_url_pattern Deployment#task_log_url_pattern}
|
|
275
275
|
*/
|
|
276
276
|
readonly taskLogUrlPattern?: string;
|
|
277
277
|
}
|
|
@@ -310,11 +310,11 @@ export declare class DeploymentRemoteExecutionOutputReference extends cdktf.Comp
|
|
|
310
310
|
}
|
|
311
311
|
export interface DeploymentScalingSpecHibernationSpecOverride {
|
|
312
312
|
/**
|
|
313
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
313
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_hibernating Deployment#is_hibernating}
|
|
314
314
|
*/
|
|
315
315
|
readonly isHibernating: boolean | cdktf.IResolvable;
|
|
316
316
|
/**
|
|
317
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
317
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#override_until Deployment#override_until}
|
|
318
318
|
*/
|
|
319
319
|
readonly overrideUntil?: string;
|
|
320
320
|
}
|
|
@@ -343,19 +343,19 @@ export declare class DeploymentScalingSpecHibernationSpecOverrideOutputReference
|
|
|
343
343
|
}
|
|
344
344
|
export interface DeploymentScalingSpecHibernationSpecSchedules {
|
|
345
345
|
/**
|
|
346
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
346
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#description Deployment#description}
|
|
347
347
|
*/
|
|
348
348
|
readonly description?: string;
|
|
349
349
|
/**
|
|
350
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
350
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#hibernate_at_cron Deployment#hibernate_at_cron}
|
|
351
351
|
*/
|
|
352
352
|
readonly hibernateAtCron: string;
|
|
353
353
|
/**
|
|
354
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
354
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_enabled Deployment#is_enabled}
|
|
355
355
|
*/
|
|
356
356
|
readonly isEnabled: boolean | cdktf.IResolvable;
|
|
357
357
|
/**
|
|
358
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
358
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#wake_at_cron Deployment#wake_at_cron}
|
|
359
359
|
*/
|
|
360
360
|
readonly wakeAtCron: string;
|
|
361
361
|
}
|
|
@@ -411,13 +411,13 @@ export interface DeploymentScalingSpecHibernationSpec {
|
|
|
411
411
|
/**
|
|
412
412
|
* Hibernation override configuration. Set to null to remove the override.
|
|
413
413
|
*
|
|
414
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
414
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#override Deployment#override}
|
|
415
415
|
*/
|
|
416
416
|
readonly override?: DeploymentScalingSpecHibernationSpecOverride;
|
|
417
417
|
/**
|
|
418
418
|
* List of hibernation schedules. Set to null to remove all schedules.
|
|
419
419
|
*
|
|
420
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
420
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#schedules Deployment#schedules}
|
|
421
421
|
*/
|
|
422
422
|
readonly schedules?: DeploymentScalingSpecHibernationSpecSchedules[] | cdktf.IResolvable;
|
|
423
423
|
}
|
|
@@ -448,7 +448,7 @@ export interface DeploymentScalingSpec {
|
|
|
448
448
|
/**
|
|
449
449
|
* Hibernation configuration for the deployment. The deployment will hibernate according to the schedules defined in this configuration. To remove the hibernation configuration, set scaling_spec to null.
|
|
450
450
|
*
|
|
451
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
451
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#hibernation_spec Deployment#hibernation_spec}
|
|
452
452
|
*/
|
|
453
453
|
readonly hibernationSpec: DeploymentScalingSpecHibernationSpec;
|
|
454
454
|
}
|
|
@@ -527,43 +527,43 @@ export interface DeploymentWorkerQueues {
|
|
|
527
527
|
/**
|
|
528
528
|
* Worker queue Astro machine value - required for 'STANDARD' and 'DEDICATED' deployments
|
|
529
529
|
*
|
|
530
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
530
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#astro_machine Deployment#astro_machine}
|
|
531
531
|
*/
|
|
532
532
|
readonly astroMachine?: string;
|
|
533
533
|
/**
|
|
534
534
|
* Worker queue default
|
|
535
535
|
*
|
|
536
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
536
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#is_default Deployment#is_default}
|
|
537
537
|
*/
|
|
538
538
|
readonly isDefault: boolean | cdktf.IResolvable;
|
|
539
539
|
/**
|
|
540
540
|
* Worker queue max worker count
|
|
541
541
|
*
|
|
542
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
542
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#max_worker_count Deployment#max_worker_count}
|
|
543
543
|
*/
|
|
544
544
|
readonly maxWorkerCount: number;
|
|
545
545
|
/**
|
|
546
546
|
* Worker queue min worker count
|
|
547
547
|
*
|
|
548
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
548
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#min_worker_count Deployment#min_worker_count}
|
|
549
549
|
*/
|
|
550
550
|
readonly minWorkerCount: number;
|
|
551
551
|
/**
|
|
552
552
|
* Worker queue name
|
|
553
553
|
*
|
|
554
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
554
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#name Deployment#name}
|
|
555
555
|
*/
|
|
556
556
|
readonly name: string;
|
|
557
557
|
/**
|
|
558
558
|
* Worker queue Node pool identifier - required for 'HYBRID' deployments
|
|
559
559
|
*
|
|
560
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
560
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#node_pool_id Deployment#node_pool_id}
|
|
561
561
|
*/
|
|
562
562
|
readonly nodePoolId?: string;
|
|
563
563
|
/**
|
|
564
564
|
* Worker queue worker concurrency
|
|
565
565
|
*
|
|
566
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
566
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#worker_concurrency Deployment#worker_concurrency}
|
|
567
567
|
*/
|
|
568
568
|
readonly workerConcurrency: number;
|
|
569
569
|
}
|
|
@@ -631,7 +631,7 @@ export declare class DeploymentWorkerQueuesList extends cdktf.ComplexList {
|
|
|
631
631
|
get(index: number): DeploymentWorkerQueuesOutputReference;
|
|
632
632
|
}
|
|
633
633
|
/**
|
|
634
|
-
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
634
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment astro_deployment}
|
|
635
635
|
*/
|
|
636
636
|
export declare class Deployment extends cdktf.TerraformResource {
|
|
637
637
|
static readonly tfResourceType = "astro_deployment";
|
|
@@ -639,12 +639,12 @@ export declare class Deployment extends cdktf.TerraformResource {
|
|
|
639
639
|
* Generates CDKTF code for importing a Deployment resource upon running "cdktf plan <stack-name>"
|
|
640
640
|
* @param scope The scope in which to define this construct
|
|
641
641
|
* @param importToId The construct id used in the generated config for the Deployment to import
|
|
642
|
-
* @param importFromId The id of the existing Deployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
642
|
+
* @param importFromId The id of the existing Deployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#import import section} in the documentation of this resource for the id to use
|
|
643
643
|
* @param provider? Optional instance of the provider where the Deployment to import is found
|
|
644
644
|
*/
|
|
645
645
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
646
646
|
/**
|
|
647
|
-
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
647
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment astro_deployment} Resource
|
|
648
648
|
*
|
|
649
649
|
* @param scope The scope in which to define this construct
|
|
650
650
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
package/dist/deployment/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
1
|
+
// https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
export function deploymentCreatedByToTerraform(struct) {
|
|
@@ -1324,7 +1324,7 @@ export class DeploymentWorkerQueuesList extends cdktf.ComplexList {
|
|
|
1324
1324
|
}
|
|
1325
1325
|
}
|
|
1326
1326
|
/**
|
|
1327
|
-
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
1327
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment astro_deployment}
|
|
1328
1328
|
*/
|
|
1329
1329
|
export class Deployment extends cdktf.TerraformResource {
|
|
1330
1330
|
// =================
|
|
@@ -1338,7 +1338,7 @@ export class Deployment extends cdktf.TerraformResource {
|
|
|
1338
1338
|
* Generates CDKTF code for importing a Deployment resource upon running "cdktf plan <stack-name>"
|
|
1339
1339
|
* @param scope The scope in which to define this construct
|
|
1340
1340
|
* @param importToId The construct id used in the generated config for the Deployment to import
|
|
1341
|
-
* @param importFromId The id of the existing Deployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
1341
|
+
* @param importFromId The id of the existing Deployment that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment#import import section} in the documentation of this resource for the id to use
|
|
1342
1342
|
* @param provider? Optional instance of the provider where the Deployment to import is found
|
|
1343
1343
|
*/
|
|
1344
1344
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -1348,7 +1348,7 @@ export class Deployment extends cdktf.TerraformResource {
|
|
|
1348
1348
|
// INITIALIZER
|
|
1349
1349
|
// ===========
|
|
1350
1350
|
/**
|
|
1351
|
-
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
1351
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/deployment astro_deployment} Resource
|
|
1352
1352
|
*
|
|
1353
1353
|
* @param scope The scope in which to define this construct
|
|
1354
1354
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -1359,8 +1359,8 @@ export class Deployment extends cdktf.TerraformResource {
|
|
|
1359
1359
|
terraformResourceType: 'astro_deployment',
|
|
1360
1360
|
terraformGeneratorMetadata: {
|
|
1361
1361
|
providerName: 'astro',
|
|
1362
|
-
providerVersion: '1.0.
|
|
1363
|
-
providerVersionConstraint: '1.0.
|
|
1362
|
+
providerVersion: '1.0.9',
|
|
1363
|
+
providerVersionConstraint: '1.0.9'
|
|
1364
1364
|
},
|
|
1365
1365
|
provider: config.provider,
|
|
1366
1366
|
dependsOn: config.dependsOn,
|
|
@@ -4,18 +4,18 @@ export interface HybridClusterWorkspaceAuthorizationConfig extends cdktf.Terrafo
|
|
|
4
4
|
/**
|
|
5
5
|
* The ID of the hybrid cluster to set authorizations for
|
|
6
6
|
*
|
|
7
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
7
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization#cluster_id HybridClusterWorkspaceAuthorization#cluster_id}
|
|
8
8
|
*/
|
|
9
9
|
readonly clusterId: string;
|
|
10
10
|
/**
|
|
11
11
|
* The IDs of the workspaces to authorize for the hybrid cluster
|
|
12
12
|
*
|
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization#workspace_ids HybridClusterWorkspaceAuthorization#workspace_ids}
|
|
14
14
|
*/
|
|
15
15
|
readonly workspaceIds?: string[];
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
|
-
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
18
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization astro_hybrid_cluster_workspace_authorization}
|
|
19
19
|
*/
|
|
20
20
|
export declare class HybridClusterWorkspaceAuthorization extends cdktf.TerraformResource {
|
|
21
21
|
static readonly tfResourceType = "astro_hybrid_cluster_workspace_authorization";
|
|
@@ -23,12 +23,12 @@ export declare class HybridClusterWorkspaceAuthorization extends cdktf.Terraform
|
|
|
23
23
|
* Generates CDKTF code for importing a HybridClusterWorkspaceAuthorization resource upon running "cdktf plan <stack-name>"
|
|
24
24
|
* @param scope The scope in which to define this construct
|
|
25
25
|
* @param importToId The construct id used in the generated config for the HybridClusterWorkspaceAuthorization to import
|
|
26
|
-
* @param importFromId The id of the existing HybridClusterWorkspaceAuthorization that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
26
|
+
* @param importFromId The id of the existing HybridClusterWorkspaceAuthorization that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization#import import section} in the documentation of this resource for the id to use
|
|
27
27
|
* @param provider? Optional instance of the provider where the HybridClusterWorkspaceAuthorization to import is found
|
|
28
28
|
*/
|
|
29
29
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
|
|
30
30
|
/**
|
|
31
|
-
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
31
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization astro_hybrid_cluster_workspace_authorization} Resource
|
|
32
32
|
*
|
|
33
33
|
* @param scope The scope in which to define this construct
|
|
34
34
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
1
|
+
// https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization
|
|
2
2
|
// generated from terraform resource schema
|
|
3
3
|
import * as cdktf from 'cdktf';
|
|
4
4
|
/**
|
|
5
|
-
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
5
|
+
* Represents a {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization astro_hybrid_cluster_workspace_authorization}
|
|
6
6
|
*/
|
|
7
7
|
export class HybridClusterWorkspaceAuthorization extends cdktf.TerraformResource {
|
|
8
8
|
// =================
|
|
@@ -16,7 +16,7 @@ export class HybridClusterWorkspaceAuthorization extends cdktf.TerraformResource
|
|
|
16
16
|
* Generates CDKTF code for importing a HybridClusterWorkspaceAuthorization resource upon running "cdktf plan <stack-name>"
|
|
17
17
|
* @param scope The scope in which to define this construct
|
|
18
18
|
* @param importToId The construct id used in the generated config for the HybridClusterWorkspaceAuthorization to import
|
|
19
|
-
* @param importFromId The id of the existing HybridClusterWorkspaceAuthorization that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
19
|
+
* @param importFromId The id of the existing HybridClusterWorkspaceAuthorization that should be imported. Refer to the {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization#import import section} in the documentation of this resource for the id to use
|
|
20
20
|
* @param provider? Optional instance of the provider where the HybridClusterWorkspaceAuthorization to import is found
|
|
21
21
|
*/
|
|
22
22
|
static generateConfigForImport(scope, importToId, importFromId, provider) {
|
|
@@ -26,7 +26,7 @@ export class HybridClusterWorkspaceAuthorization extends cdktf.TerraformResource
|
|
|
26
26
|
// INITIALIZER
|
|
27
27
|
// ===========
|
|
28
28
|
/**
|
|
29
|
-
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.
|
|
29
|
+
* Create a new {@link https://registry.terraform.io/providers/astronomer/astro/1.0.9/docs/resources/hybrid_cluster_workspace_authorization astro_hybrid_cluster_workspace_authorization} Resource
|
|
30
30
|
*
|
|
31
31
|
* @param scope The scope in which to define this construct
|
|
32
32
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -37,8 +37,8 @@ export class HybridClusterWorkspaceAuthorization extends cdktf.TerraformResource
|
|
|
37
37
|
terraformResourceType: 'astro_hybrid_cluster_workspace_authorization',
|
|
38
38
|
terraformGeneratorMetadata: {
|
|
39
39
|
providerName: 'astro',
|
|
40
|
-
providerVersion: '1.0.
|
|
41
|
-
providerVersionConstraint: '1.0.
|
|
40
|
+
providerVersion: '1.0.9',
|
|
41
|
+
providerVersionConstraint: '1.0.9'
|
|
42
42
|
},
|
|
43
43
|
provider: config.provider,
|
|
44
44
|
dependsOn: config.dependsOn,
|