File tree Expand file tree Collapse file tree 4 files changed +3
-8
lines changed Expand file tree Collapse file tree 4 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 1- # Tamr GCP Wrapper - v0.4.0 - August 18th 2021
2- * Plumb through deletion_protection for cloud sql instance
3-
41# Tamr GCP Wrapper - v0.2.1 - August 3rd 2020
52* Remove direct invocation of GLB module
63* update docs with more examples
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ No provider.
6060| additional\_ admin\_ users | list of additional entities to give admin permissions to provisioned resources | ` list(string) ` | ` [] ` | no |
6161| additional\_ read\_ users | list of additional entities to give read only permissions to provisioned resources | ` list(string) ` | ` [] ` | no |
6262| bucket\_ locations | Location for the gcs buckets, default is ` US ` | ` string ` | ` "US" ` | no |
63- | force\_ destroy | force destroy potentially persistent resources, like bigtable/gcs/cloud sql instance | ` bool ` | ` false ` | no |
63+ | force\_ destroy | force destroy potentially persistent resources, like bigtable/gcs | ` bool ` | ` false ` | no |
6464| labels | Labels to attach to created resources | ` map(string) ` | ` {} ` | no |
6565| sql\_ disk\_ size | size of the disk to use on the tamr sql instance | ` number ` | ` 10 ` | no |
6666| sql\_ disk\_ type | The disk type to use on the cloud SQL instance. should be either PD\_ SSD or PD\_ STANDARD | ` string ` | ` "PD_SSD" ` | no |
Original file line number Diff line number Diff line change @@ -28,15 +28,13 @@ module "iam" {
2828}
2929
3030module "cloud_sql" {
31- source = " git::[email protected] :Datatamer/terraform-gcp-tamr-cloud-sql.git?ref=v4.6 .0" 31+ source = " git::[email protected] :Datatamer/terraform-gcp-tamr-cloud-sql.git?ref=v2.1 .0" 3232 name = var. deployment_name
3333
3434 project_id = var. project_id
3535 labels = var. labels
3636 region = var. region
3737
38- deletion_protection = local. deletion_protection
39-
4038 cloud_sql_viewer_members = local. read_users
4139 cloud_sql_client_members = local. admin_users
4240
Original file line number Diff line number Diff line change @@ -117,5 +117,5 @@ variable "labels" {
117117variable "force_destroy" {
118118 default = false
119119 type = bool
120- description = " force destroy potentially persistent resources, like bigtable/gcs/cloud sql instance "
120+ description = " force destroy potentially persistent resources, like bigtable/gcs"
121121}
You can’t perform that action at this time.
0 commit comments