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
-
4
1
# Tamr GCP Wrapper - v0.2.1 - August 3rd 2020
5
2
* Remove direct invocation of GLB module
6
3
* update docs with more examples
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ No provider.
60
60
| additional\_ admin\_ users | list of additional entities to give admin permissions to provisioned resources | ` list(string) ` | ` [] ` | no |
61
61
| additional\_ read\_ users | list of additional entities to give read only permissions to provisioned resources | ` list(string) ` | ` [] ` | no |
62
62
| 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 |
64
64
| labels | Labels to attach to created resources | ` map(string) ` | ` {} ` | no |
65
65
| sql\_ disk\_ size | size of the disk to use on the tamr sql instance | ` number ` | ` 10 ` | no |
66
66
| 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" {
28
28
}
29
29
30
30
module "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"
32
32
name = var. deployment_name
33
33
34
34
project_id = var. project_id
35
35
labels = var. labels
36
36
region = var. region
37
37
38
- deletion_protection = local. deletion_protection
39
-
40
38
cloud_sql_viewer_members = local. read_users
41
39
cloud_sql_client_members = local. admin_users
42
40
Original file line number Diff line number Diff line change @@ -117,5 +117,5 @@ variable "labels" {
117
117
variable "force_destroy" {
118
118
default = false
119
119
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"
121
121
}
You can’t perform that action at this time.
0 commit comments