-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvariables.tf
899 lines (593 loc) · 23.6 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
# Copyright 2023 Cloudera, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ------- Global settings -------
variable "infra_type" {
type = string
description = "Cloud Provider to deploy CDP."
validation {
condition = contains(["aws", "azure", "gcp"], var.infra_type)
error_message = "Valid values for var: infra_type are (azure, aws, gcp)."
}
}
variable "env_tags" {
type = map(any)
description = "Tags applied to provisioned resources"
default = null
}
variable "agent_source_tag" {
type = map(any)
description = "Tag to identify deployment source"
default = { agent_source = "tf-cdp-module" }
}
variable "env_prefix" {
type = string
description = "Shorthand name for the environment. Used in CDP resource descriptions. This will be used to construct the value of where any of the CDP resource variables (e.g. environment_name, cdp_iam_admin_group_name) are not defined."
validation {
condition = length(var.env_prefix) <= 18
error_message = "The length of env_prefix must be 18 characters or less."
}
validation {
condition = (var.env_prefix == null ? true : can(regex("^[a-z0-9-]{1,18}$", var.env_prefix)))
error_message = "env_prefix can consist only of lowercase letters, numbers, and hyphens (-)."
}
}
# ------- CDP Environment Deployment - General -------
variable "environment_name" {
type = string
description = "Name of the CDP environment. Defaults to '<env_prefix>-cdp-env' if not specified."
default = null
validation {
condition = (var.environment_name == null ? true : length(var.environment_name) >= 5 && length(var.environment_name) <= 28)
error_message = "The length of environment_name must be between 5 and 28 characters."
}
validation {
condition = (var.environment_name == null ? true : can(regex("^[a-z0-9-]{1,90}$", var.environment_name)))
error_message = "environment_name can consist only of lowercase letters, numbers, and hyphens (-)."
}
}
variable "environment_description" {
type = string
description = "Description of CDP environment"
default = null
}
variable "environment_cascading_delete" {
type = bool
description = "Flag to enable cascading delete of environment and associated resources"
default = null
}
variable "datalake_name" {
type = string
description = "Name of the CDP datalake. Defaults to '<env_prefix>-<aw|az|gc|>-dl' if not specified."
default = null
validation {
condition = (var.datalake_name == null ? true : length(var.datalake_name) >= 5 && length(var.datalake_name) <= 40)
error_message = "The length of datalake_name must be between 5 and 40 characters."
}
validation {
condition = (var.datalake_name == null ? true : can(regex("^[a-z0-9-]{5,40}$", var.datalake_name)))
error_message = "datalake_name can consist only of lowercase letters, numbers, and hyphens (-)."
}
}
variable "create_cdp_credential" {
type = bool
description = "Flag to specify if the CDP Cross Account Credential should be created. If set to false then cdp_xacccount_credential_name should be a valid pre-existing credential."
default = true
}
variable "cdp_xacccount_credential_name" {
type = string
description = "Name of the CDP Cross Account Credential. Defaults to '<env_prefix>-xaccount-cred' if not specified. If create_cdp_credential is set to false then this should should be a valid pre-existing credential."
default = null
validation {
condition = (var.cdp_xacccount_credential_name == null ? true : length(var.cdp_xacccount_credential_name) >= 5 && length(var.cdp_xacccount_credential_name) <= 100)
error_message = "The length of cdp_xacccount_credential_name must be between 5 and 100 characters."
}
validation {
condition = (var.cdp_xacccount_credential_name == null ? true : can(regex("^[a-z0-9-]{5,100}$", var.cdp_xacccount_credential_name)))
error_message = "cdp_xacccount_credential_name can consist only of lowercase letters, numbers, and hyphens (-)."
}
}
variable "cdp_admin_group_name" {
type = string
description = "Name of the CDP IAM Admin Group associated with the environment. Defaults to '<env_prefix>-cdp-admin-group' if not specified."
default = null
validation {
condition = (var.cdp_admin_group_name == null ? true : length(var.cdp_admin_group_name) >= 1 && length(var.cdp_admin_group_name) <= 64)
error_message = "The length of cdp_admin_group_name must be 64 characters or less."
}
validation {
condition = (var.cdp_admin_group_name == null ? true : can(regex("^[a-zA-Z0-9\\-\\_\\.]{1,90}$", var.cdp_admin_group_name)))
error_message = "cdp_admin_group_name can consist only of letters, numbers, dots (.), hyphens (-) and underscores (_)."
}
}
variable "cdp_user_group_name" {
type = string
description = "Name of the CDP IAM User Group associated with the environment. Defaults to '<env_prefix>-cdp-user-group' if not specified."
default = null
validation {
condition = (var.cdp_user_group_name == null ? true : length(var.cdp_user_group_name) >= 1 && length(var.cdp_user_group_name) <= 64)
error_message = "The length of cdp_user_group_name must be 64 characters or less."
}
validation {
condition = (var.cdp_user_group_name == null ? true : can(regex("^[a-zA-Z0-9\\-\\_\\.]{1,90}$", var.cdp_user_group_name)))
error_message = "cdp_user_group_name can consist only of letters, numbers, dots (.), hyphens (-) and underscores (_)."
}
}
variable "deployment_template" {
type = string
description = "Deployment Pattern to use for Cloud resources and CDP"
validation {
condition = contains(["public", "semi-private", "private"], var.deployment_template)
error_message = "Valid values for var: deployment_template are (public, semi-private, private)."
}
}
variable "enable_ccm_tunnel" {
type = bool
description = "Flag to enable Cluster Connectivity Manager tunnel. If false then access from Cloud to CDP Control Plane CIDRs is required from via SG ingress"
default = true
}
variable "enable_raz" {
type = bool
description = "Flag to enable Ranger Authorization Service (RAZ)"
default = true
}
variable "environment_async_creation" {
type = bool
description = "Flag to specify if Terraform should wait for CDP environment resource creation/deletion"
default = false
}
variable "environment_call_failure_threshold" {
type = number
description = "Threshold value that specifies how many times should a single CDP Environment API call failure happen before giving up the polling"
default = 3
}
variable "environment_polling_timeout" {
type = number
description = " Timeout value in minutes for how long to poll for CDP Environment resource creation/deletion"
default = 60
}
variable "multiaz" {
type = bool
description = "Flag to specify that the FreeIPA and DataLake instances will be deployed across multi-availability zones."
default = true
}
variable "freeipa_instances" {
type = number
description = "The number of FreeIPA instances to create in the environment"
default = 3
}
variable "freeipa_catalog" {
type = string
description = "Image catalog to use for FreeIPA image selection"
default = null
}
variable "freeipa_image_id" {
type = string
description = "Image ID to use for creating FreeIPA instances"
default = null
}
variable "freeipa_instance_type" {
type = string
description = "Instance Type to use for creating FreeIPA instances"
default = null
}
variable "freeipa_recipes" {
type = set(string)
description = "The recipes for the FreeIPA cluster"
default = null
}
variable "freeipa_os" {
type = string
description = "The Operating System to be used for the FreeIPA instances"
validation {
condition = (var.freeipa_os == null ? true : contains(["redhat8", "centos7"], var.freeipa_os))
error_message = "Valid values for var: freeipa_os are (redhat8, centos7)."
}
default = null
}
variable "proxy_config_name" {
type = string
description = "Name of the proxy config to use for the environment."
default = null
}
variable "workload_analytics" {
type = bool
description = "Flag to specify if workload analytics should be enabled for the CDP environment"
default = true
}
variable "datalake_scale" {
type = string
description = "The scale of the datalake. Valid values are LIGHT_DUTY, ENTERPRISE."
validation {
condition = (var.datalake_scale == null ? true : contains(["LIGHT_DUTY", "ENTERPRISE", "MEDIUM_DUTY_HA"], var.datalake_scale))
error_message = "Valid values for var: datalake_scale are (LIGHT_DUTY, ENTERPRISE, MEDIUM_DUTY_HA)."
}
default = null
}
variable "datalake_version" {
type = string
description = "The Datalake Runtime version. Valid values are latest or a semantic version, e.g. 7.2.17"
validation {
condition = (var.datalake_version == null ? true :
(var.datalake_version == "latest" ? true :
length(regexall("\\d+\\.\\d+.\\d+", var.datalake_version)) > 0))
error_message = "Valid values for var: datalake_version are 'latest' or a semantic versioning conventions."
}
default = "latest"
}
variable "endpoint_access_scheme" {
type = string
description = "The scheme for the workload endpoint gateway. PUBLIC creates an external endpoint that can be accessed over the Internet. PRIVATE which restricts the traffic to be internal to the VPC / Vnet. Relevant in Private Networks."
validation {
condition = (var.endpoint_access_scheme == null ? true : contains(["PUBLIC", "PRIVATE"], var.endpoint_access_scheme))
error_message = "Valid values for var: endpoint_access_scheme are (PUBLIC, PRIVATE)."
}
default = null
}
variable "datalake_image" {
type = object({
id = optional(string)
catalog_name = optional(string)
os = optional(string)
})
description = "The image to use for the datalake. Can only be used when the 'datalake_version' parameter is set to null. You can use 'catalog' name and/or 'id' for selecting an image."
default = null
}
variable "datalake_java_version" {
type = number
description = "The Java major version to use on the datalake cluster."
default = null
}
variable "datalake_recipes" {
type = set(
object({
instance_group_name = string,
recipe_names = set(string)
})
)
description = "Additional recipes that will be attached on the datalake instances"
default = null
}
variable "datalake_async_creation" {
type = bool
description = "Flag to specify if Terraform should wait for CDP datalake resource creation/deletion"
default = false
}
variable "datalake_call_failure_threshold" {
type = number
description = "Threshold value that specifies how many times should a single CDP Datalake API call failure happen before giving up the polling"
default = 3
}
variable "datalake_polling_timeout" {
type = number
description = "Timeout value in minutes for how long to poll for CDP datalake resource creation/deletion"
default = 90
}
# ------- CDP Environment Deployment - AWS specific -------
variable "encryption_key_arn" {
type = string
description = "ARN of the AWS KMS CMK to use for the server-side encryption of AWS storage resources. Only applicable for CDP deployment on AWS."
default = null
}
variable "s3_guard_table_name" {
type = string
description = "Name for the DynamoDB table backing S3Guard. Only applicable for CDP deployment on AWS."
default = null
}
# ------- CDP Environment Deployment - Azure specific -------
variable "enable_outbound_load_balancer" {
type = bool
description = "Create outbound load balancers for Azure environments. Only applicable for CDP deployment on Azure."
default = null
}
variable "encryption_key_resource_group_name" {
type = string
description = "Name of the existing Azure resource group hosting the Azure Key Vault containing customer managed key which will be used to encrypt the Azure Managed Disk. Only applicable for CDP deployment on Azure."
default = null
}
variable "encryption_key_url" {
type = string
description = "URL of the key which will be used to encrypt the Azure Managed Disks. Only applicable for CDP deployment on Azure."
default = null
}
variable "encryption_at_host" {
type = bool
description = "Provision resources with host encryption enabled. Only applicable for CDP deployment on Azure."
default = null
}
variable "encryption_user_managed_identity" {
type = string
description = "Managed Identity ID for encryption"
default = ""
}
# ------- Cloud Service Provider Settings - General -------
variable "region" {
type = string
description = "Region which cloud resources will be created"
}
variable "keypair_name" {
type = string
description = "SSH Keypair name in Cloud Service Provider. For CDP deployment on AWS, either 'keypair_name' or 'public_key_text' needs to be set."
default = null
}
variable "public_key_text" {
type = string
description = "SSH Public key string for the nodes of the CDP environment. Required for CDP deployment on Azure. For CDP deployment on AWS, either 'keypair_name' or 'public_key_text' needs to be set."
default = null
}
variable "data_storage_location" {
type = string
description = "Data storage location. The location has to be in uri format for the cloud provider - i.e. s3a:// for AWS, abfs:// for Azure, gs://"
}
variable "log_storage_location" {
type = string
description = "Log storage location. The location has to be in uri format for the cloud provider - i.e. s3a:// for AWS, abfs:// for Azure, gs://"
}
variable "backup_storage_location" {
type = string
description = "Backup storage location. The location has to be in uri format for the cloud provider - i.e. s3a:// for AWS, abfs:// for Azure, gs://"
}
variable "use_public_ips" {
type = bool
description = "Use public ip's for the CDP resources created within the Cloud network. Required for CDP deployment on Azure and GCP."
default = null
}
# ------- Cloud Service Provider Settings - AWS specific -------
variable "aws_vpc_id" {
type = string
description = "AWS Virtual Private Network ID. Required for CDP deployment on AWS."
default = null
}
variable "aws_public_subnet_ids" {
type = list(string)
description = "List of public subnet ids. Required for CDP deployment on AWS."
default = null
}
variable "aws_private_subnet_ids" {
type = list(string)
description = "List of private subnet ids. Required for CDP deployment on AWS."
default = null
}
variable "aws_security_group_default_id" {
type = string
description = "ID of the Default Security Group for CDP environment. Required for CDP deployment on AWS."
default = null
}
variable "aws_security_group_knox_id" {
type = string
description = "ID of the Knox Security Group for CDP environment. Required for CDP deployment on AWS."
default = null
}
variable "aws_security_access_cidr" {
type = string
description = "CIDR range for inbound traffic. With this option security groups will be automatically created. Only used for CDP deployment on AWS. Note it is recommended to specify pre-existing security groups instead of this option."
default = null
}
variable "aws_datalake_admin_role_arn" {
type = string
description = "Datalake Admin Role ARN. Required for CDP deployment on AWS."
default = null
}
variable "aws_ranger_audit_role_arn" {
type = string
description = "Ranger Audit Role ARN. Required for CDP deployment on AWS."
default = null
}
variable "aws_xaccount_role_arn" {
type = string
description = "Cross Account Role ARN. Required for CDP deployment on AWS."
default = null
}
variable "aws_log_instance_profile_arn" {
type = string
description = "Log Instance Profile ARN. Required for CDP deployment on AWS."
default = null
}
variable "aws_idbroker_instance_profile_arn" {
type = string
description = "IDBroker Instance Profile ARN. Required for CDP deployment on AWS."
default = null
}
variable "aws_raz_role_arn" {
type = string
description = "ARN for Ranger Authorization Service (RAZ) role. Only applicable for CDP deployment on AWS."
default = null
}
# ------- Cloud Service Provider Settings - Azure specific -------
variable "azure_subscription_id" {
type = string
description = "Subscription ID where the Azure pre-reqs are created. Required for CDP deployment on Azure."
default = null
}
variable "azure_tenant_id" {
type = string
description = "Tenant ID where the Azure pre-reqs are created. Required for CDP deployment on Azure."
default = null
}
variable "azure_resource_group_name" {
type = string
description = "Azure Resource Group name. Required for CDP deployment on Azure."
default = null
}
variable "azure_vnet_name" {
type = string
description = "Azure Virtual Network ID. Required for CDP deployment on Azure."
default = null
}
variable "azure_aks_private_dns_zone_id" {
type = string
description = "The ID of an existing private DNS zone used for the AKS."
default = null
}
variable "azure_database_private_dns_zone_id" {
type = string
description = "The ID of an existing private DNS zone used for the database."
default = null
}
variable "azure_create_private_endpoints" {
type = bool
description = "Flag to specify that Azure Postgres will be configured with Private Endpoint and a Private DNS Zone."
default = null
}
variable "azure_accept_image_terms" {
type = bool
description = "Flag to automatically accept Azure Marketplace image terms during CDP cluster deployment."
default = true
}
variable "azure_cdp_subnet_names" {
type = list(any)
description = "List of Azure Subnet Names for CDP Resources. Required for CDP deployment on Azure."
default = null
}
variable "azure_cdp_gateway_subnet_names" {
type = list(any)
description = "List of Azure Subnet Names CDP Endpoint Access Gateway. Required for CDP deployment on Azure."
default = null
}
variable "azure_environment_flexible_server_delegated_subnet_names" {
type = list(any)
description = "List of Azure Subnet Names delegated for Private Flexible servers. Required for CDP deployment on Azure."
default = null
}
variable "azure_security_group_default_uri" {
type = string
description = "Azure Default Security Group URI. Required for CDP deployment on Azure."
default = null
}
variable "azure_security_group_knox_uri" {
type = string
description = "Azure Knox Security Group URI. Required for CDP deployment on Azure."
default = null
}
variable "azure_security_access_cidr" {
type = string
description = "CIDR range for inbound traffic. With this option security groups will be automatically created. Only used for CDP deployment on Azure. Note it is recommended to specify pre-existing security groups instead of this option."
default = null
}
variable "use_single_resource_group" {
type = bool
description = "Use a single resource group for all provisioned CDP resources. Required for CDP deployment on Azure."
default = true
}
variable "azure_xaccount_app_uuid" {
type = string
description = "UUID for the Azure AD Cross Account Application. Required for CDP deployment on Azure."
default = null
}
variable "azure_xaccount_app_pword" {
type = string
description = "Password for the Azure AD Cross Account Application. Required for CDP deployment on Azure."
sensitive = true
default = null
}
variable "azure_idbroker_identity_id" {
type = string
description = "IDBroker Managed Identity ID. Required for CDP deployment on Azure."
default = null
}
variable "azure_datalakeadmin_identity_id" {
type = string
description = "Datalake Admin Managed Identity ID. Required for CDP deployment on Azure."
default = null
}
variable "azure_ranger_audit_identity_id" {
type = string
description = "Ranger Audit Managed Identity ID. Required for CDP deployment on Azure."
default = null
}
variable "azure_log_identity_id" {
type = string
description = "Log Data Access Managed Identity ID. Required for CDP deployment on Azure."
default = null
}
variable "azure_raz_identity_id" {
type = string
description = "RAZ Managed Identity ID. Required for CDP deployment on Azure."
default = null
}
variable "azure_datalake_flexible_server_delegated_subnet_name" {
type = string
description = "The subnet ID for the subnet within which you want to configure your Azure Flexible Server for the CDP datalake"
default = null
}
variable "azure_load_balancer_sku" {
type = string
description = "The Azure load balancer SKU type. Possible values are BASIC, STANDARD or None. The current default is BASIC. To disable the load balancer, use type NONE."
default = null
}
# ------- Cloud Service Provider Settings - GCP specific -------
variable "gcp_project_id" {
type = string
description = "GCP project to deploy CDP environment. Required for CDP deployment on GCP."
default = null
}
variable "gcp_xaccount_service_account_private_key" {
type = string
description = "Base64 encoded private key of the GCP Cross Account Service Account Key. Required for CDP deployment on GCP."
default = null
}
variable "gcp_network_name" {
type = string
description = "GCP Network VPC name. Required for CDP deployment on GCP."
default = null
}
variable "gcp_cdp_subnet_names" {
type = list(any)
description = "List of GCP Subnet Names for CDP Resources. Required for CDP deployment on GCP."
default = null
}
variable "gcp_availability_zones" {
type = list(string)
description = "The zones of the environment in the given region. Multi-zone selection is not supported in GCP yet. It accepts only one zone until support is added."
default = null
}
variable "gcp_firewall_default_id" {
type = string
description = "Default Firewall for CDP environment. Required for CDP deployment on GCP."
default = null
}
variable "gcp_firewall_knox_id" {
type = string
description = "Knox Firewall for CDP environment. Required for CDP deployment on GCP."
default = null
}
variable "gcp_idbroker_service_account_email" {
type = string
description = "Email id of the service account for IDBroker. Required for CDP deployment on GCP."
default = null
}
variable "gcp_log_service_account_email" {
type = string
description = "Email id of the service account for Log Storage. Required for CDP deployment on GCP."
default = null
}
variable "gcp_ranger_audit_service_account_email" {
type = string
description = "Email id of the service account for Ranger Audit. Required for CDP deployment on GCP."
default = null
}
variable "gcp_datalake_admin_service_account_email" {
type = string
description = "Email id of the service account for Datalake Admin. Required for CDP deployment on GCP."
default = null
}
variable "gcp_encryption_key" {
type = string
description = "Key Resource ID of the customer managed encryption key to encrypt GCP resources. Only applicable for CDP deployment on GCP."
default = null
}
variable "gcp_raz_service_account_email" {
type = string
description = "Email id of the service account for Ranger Authorization Service (RAZ). Only applicable for CDP deployment on GCP."
default = null
}