provider/aws: Fix db instance snapshot tests
This commit is contained in:
parent
3e8d5eed06
commit
8f216563aa
|
@ -553,6 +553,8 @@ resource "aws_db_instance" "snapshot" {
|
|||
security_group_names = ["default"]
|
||||
backup_retention_period = 1
|
||||
|
||||
publicly_accessible = true
|
||||
|
||||
parameter_group_name = "default.mysql5.6"
|
||||
|
||||
skip_final_snapshot = false
|
||||
|
@ -578,6 +580,7 @@ resource "aws_db_instance" "no_snapshot" {
|
|||
instance_class = "db.t1.micro"
|
||||
name = "baz"
|
||||
password = "barbarbarbar"
|
||||
publicly_accessible = true
|
||||
username = "foo"
|
||||
security_group_names = ["default"]
|
||||
backup_retention_period = 1
|
||||
|
|
Loading…
Reference in New Issue