Skip to content

Commit

Permalink
Fix DataFusion instance versions used in tests (GoogleCloudPlatform#7343
Browse files Browse the repository at this point in the history
)
  • Loading branch information
roaks3 authored and ericayyliu committed Jul 26, 2023
1 parent 75b3ccc commit ea3263b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ resource "google_data_fusion_instance" "<%= ctx[:primary_resource_id] %>" {
name = "<%= ctx[:vars]["instance_name"] %>"
region = "us-central1"
type = "BASIC"
version = "6.7.0"

event_publish_config {
enabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ resource "google_data_fusion_instance" "<%= ctx[:primary_resource_id] %>" {
enable_stackdriver_logging = true
enable_stackdriver_monitoring = true
private_instance = true
version = "6.6.0"
dataproc_service_account = data.google_app_engine_default_service_account.default.email

labels = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ resource "google_data_fusion_instance" "foobar" {
name = "%s"
region = "us-central1"
type = "BASIC"
version = "6.1.1"
# See supported versions here https://cloud.google.com/data-fusion/docs/support/version-support-policy
version = "6.7.0"
# Mark for testing to avoid service networking connection usage that is not cleaned up
options = {
prober_test_run = "true"
Expand All @@ -64,7 +65,7 @@ resource "google_data_fusion_instance" "foobar" {
label1 = "value1"
label2 = "value2"
}
version = "6.2.0"
version = "6.8.0"
# Mark for testing to avoid service networking connection usage that is not cleaned up
options = {
prober_test_run = "true"
Expand Down

0 comments on commit ea3263b

Please sign in to comment.