fix: remove unknown param for SCW managed DB (#619)

This commit is contained in:
Benjamin
2022-02-25 09:41:08 +01:00
committed by GitHub
parent 06f9923768
commit 2f91b9a38c
3 changed files with 1 additions and 7 deletions

View File

@@ -56,9 +56,6 @@ resource "scaleway_rdb_instance" "mysql_instance" {
tags = local.tags_mysql_list
publicly_accessible = var.publicly_accessible
# TODO:(benjaminch): features to be added at some point but be discussed with Scaleway
# - port
# - instance create timeout

View File

@@ -56,9 +56,6 @@ resource "scaleway_rdb_instance" "postgresql_instance" {
tags = local.tags_postgresql_list
publicly_accessible = var.publicly_accessible
# TODO:(benjaminch): features to be added at some point but be discussed with Scaleway
# - port
# - instance create timeout

View File

@@ -991,7 +991,7 @@ pub fn test_db(
let app_id = generate_id();
let database_username = "superuser".to_string();
let database_password = generate_id();
let database_password = generate_password(true);
let db_kind_str = db_kind.name().to_string();
let db_id = generate_id();
let database_host = format!("{}-{}", db_id, db_kind_str.clone());