Skip to content

Commit b1f8165

Browse files
authored
PATCH: Merge pull request #8 from Datatamer/revert-cloud-sql-module-version
DEV-14982 Revert cloud sql module version back to v2.1.0
2 parents fa1c698 + fc7b215 commit b1f8165

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 |

main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@ module "iam" {
2828
}
2929

3030
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"
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

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ variable "labels" {
117117
variable "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
}

0 commit comments

Comments
 (0)