Skip to content

Commit 89e9d20

Browse files
authored
fix!: upgraded versions.tf to include minor bumps from tpg v5 (#75)
1 parent 9aab6fc commit 89e9d20

File tree

28 files changed

+46
-62
lines changed

28 files changed

+46
-62
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Make will use bash instead of sh
1919
SHELL := /usr/bin/env bash
2020

21-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.5
21+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.17
2222
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Functional examples are included in the
2525

2626
| Name | Description | Type | Default | Required |
2727
|------|-------------|------|---------|:--------:|
28-
| data\_fusion\_service\_account | Google Managed Data Fusion Service Account Email | `any` | n/a | yes |
2928
| datafusion\_version | Data Fusion Version to deploy. | `string` | `null` | no |
3029
| dataproc\_subnet | Name for subnet to create and configure for Dataproc clusters controlled by private Data Fusion instance. | `string` | `"dataproc-subnet"` | no |
3130
| description | An optional description of the instance. | `string` | `null` | no |

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ tags:
3838
- 'integration'
3939
substitutions:
4040
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
41-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.5'
41+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ tags:
2121
- 'lint'
2222
substitutions:
2323
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
24-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.5'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17'

examples/dataproc_profile/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This example illustrates how to use the `dataproc_provisioner` module.
1111

1212
## Outputs
1313

14-
No output.
14+
No outputs.
1515

1616
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
1717

examples/dataproc_profile/versions.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ terraform {
2222
version = "~> 0.10"
2323
}
2424
google = {
25-
source = "hashicorp/google"
26-
version = "~> 4.0"
25+
source = "hashicorp/google"
2726
}
2827
}
2928
}

examples/hub_artifact/versions.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ terraform {
2121
version = "~> 0.10"
2222
}
2323
google = {
24-
source = "hashicorp/google"
25-
version = "~> 4.0"
24+
source = "hashicorp/google"
2625
}
2726
}
2827
required_version = ">= 0.13"

examples/instance/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ This example illustrates how to use the `data-fusion` module.
77

88
| Name | Description | Type | Default | Required |
99
|------|-------------|------|---------|:--------:|
10-
| data\_fusion\_service\_account | Google Managed Data Fusion Service Account Email | `any` | n/a | yes |
1110
| project\_id | The ID of the project in which to provision resources. | `string` | n/a | yes |
1211

1312
## Outputs

examples/instance/main.tf

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
module "data_fusion" {
1818
source = "../../"
1919

20-
name = "example-instance"
21-
project = var.project_id
22-
region = "us-central1"
23-
network = "default"
24-
data_fusion_service_account = var.data_fusion_service_account
20+
name = "example-instance"
21+
project = var.project_id
22+
region = "us-central1"
23+
network = "default"
2524
}

examples/instance/simple/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ This example illustrates how to use the `data-fusion` module.
77

88
| Name | Description | Type | Default | Required |
99
|------|-------------|------|---------|:--------:|
10-
| data\_fusion\_service\_account | Google Managed Data Fusion Service Account Email | `any` | n/a | yes |
1110
| project\_id | The ID of the project in which to provision resources. | `string` | n/a | yes |
1211

1312
## Outputs
1413

15-
No output.
14+
No outputs.
1615

1716
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
1817

0 commit comments

Comments
 (0)