Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaozhu36 committed Feb 1, 2025
1 parent 7219c35 commit 5fd5e56
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion alicloud/resource_alicloud_rds_account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ resource "alicloud_db_instance" "default" {
instance_storage = data.alicloud_db_instance_classes.default.instance_classes.0.storage_range.min
vswitch_id = local.vswitch_id
instance_name = var.name
instance_charge_type = "Postpaid"
monitoring_period = 60
db_instance_storage_type = "cloud_ssd"
db_is_ignore_case = false
}
`, name)

Expand Down Expand Up @@ -474,11 +478,14 @@ resource "alicloud_security_group" "default" {
resource "alicloud_db_instance" "default" {
engine = "MySQL"
engine_version = "8.0"
db_instance_storage_type = "cloud_essd"
db_instance_storage_type = "cloud_ssd"
instance_type = data.alicloud_db_instance_classes.default.instance_classes.0.instance_class
instance_storage = data.alicloud_db_instance_classes.default.instance_classes.0.storage_range.min
vswitch_id = local.vswitch_id
instance_name = var.name
instance_charge_type = "Postpaid"
monitoring_period = 60
db_is_ignore_case = false
}
data "alicloud_kms_keys" "default" {
Expand Down

0 comments on commit 5fd5e56

Please sign in to comment.