File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ module "mysql" {
60
60
}
61
61
62
62
// Read replica configurations
63
- read_replica_name_suffix = " test"
63
+ read_replica_name_suffix = " - test"
64
64
read_replica_size = 3
65
65
read_replica_tier = " db-n1-standard-1"
66
66
read_replica_zones = " a,b,c"
@@ -99,7 +99,7 @@ module "mysql" {
99
99
100
100
// Failover replica configurations
101
101
failover_replica = true
102
- failover_replica_name_suffix = " test"
102
+ failover_replica_name_suffix = " - test"
103
103
failover_replica_tier = " db-n1-standard-1"
104
104
failover_replica_zone = " a"
105
105
failover_replica_activation_policy = " ALWAYS"
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ module "pg" {
60
60
}
61
61
62
62
// Read replica configurations
63
- read_replica_name_suffix = " test"
63
+ read_replica_name_suffix = " - test"
64
64
read_replica_size = 3
65
65
read_replica_tier = " db-custom-2-13312"
66
66
read_replica_zones = " a,b,c"
Original file line number Diff line number Diff line change 57
57
it { expect ( user_labels ) . to include ( foo : "bar" ) }
58
58
end
59
59
60
- describe google_sql_database_instance ( project : project_id , database : "#{ basename } -failover" ) do
60
+ describe google_sql_database_instance ( project : project_id , database : "#{ basename } -failover-test " ) do
61
61
let ( :expected_settings ) {
62
62
{
63
63
activation_policy : "ALWAYS" ,
93
93
end
94
94
95
95
%i[ a b c ] . each_with_index do |zone , index |
96
- name = "#{ basename } -replica#{ index } "
96
+ name = "#{ basename } -replica-test #{ index } "
97
97
describe google_sql_database_instance ( project : project_id , database : name ) do
98
98
let ( :expected_settings ) {
99
99
{
Original file line number Diff line number Diff line change 59
59
end
60
60
61
61
%i[ a b c ] . each_with_index do |zone , index |
62
- name = "#{ basename } -replica#{ index } "
62
+ name = "#{ basename } -replica-test #{ index } "
63
63
describe google_sql_database_instance ( project : project_id , database : name ) do
64
64
let ( :expected_settings ) {
65
65
{
You can’t perform that action at this time.
0 commit comments