@@ -424,7 +424,7 @@ resource "google_datastream_stream" "stream5" {
424424``` hcl
425425
426426resource "google_bigquery_dataset" "postgres" {
427- dataset_id = "postgres%{random_suffix} "
427+ dataset_id = "postgres"
428428 friendly_name = "postgres"
429429 description = "Database of postgres"
430430 location = "us-central1"
@@ -433,7 +433,7 @@ resource "google_bigquery_dataset" "postgres" {
433433resource "google_datastream_stream" "default" {
434434 display_name = "postgres to bigQuery"
435435 location = "us-central1"
436- stream_id = "postgres-to-big-query%{random_suffix} "
436+ stream_id = "postgres-bigquery "
437437
438438 source_config {
439439 source_connection_profile = google_datastream_connection_profile.source_connection_profile.id
@@ -458,12 +458,12 @@ resource "google_datastream_stream" "default" {
458458resource "google_datastream_connection_profile" "destination_connection_profile2" {
459459 display_name = "Connection profile"
460460 location = "us-central1"
461- connection_profile_id = "tf-test-destination- profile%{random_suffix} "
461+ connection_profile_id = "dest- profile"
462462 bigquery_profile {}
463463}
464464
465465resource "google_sql_database_instance" "instance" {
466- name = "tf-test-my- instance%{random_suffix} "
466+ name = "instance-name "
467467 database_version = "MYSQL_8_0"
468468 region = "us-central1"
469469 settings {
@@ -511,7 +511,7 @@ resource "random_password" "pwd" {
511511}
512512
513513resource "google_sql_user" "user" {
514- name = "user%{random_suffix} "
514+ name = "my- user"
515515 instance = google_sql_database_instance.instance.name
516516 host = "%"
517517 password = random_password.pwd.result
@@ -520,7 +520,7 @@ resource "google_sql_user" "user" {
520520resource "google_datastream_connection_profile" "source_connection_profile" {
521521 display_name = "Source connection profile"
522522 location = "us-central1"
523- connection_profile_id = "tf-test- source-profile%{random_suffix} "
523+ connection_profile_id = "source-profile"
524524
525525 mysql_profile {
526526 hostname = google_sql_database_instance.instance.public_ip_address
0 commit comments