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"]
|
security_group_names = ["default"]
|
||||||
backup_retention_period = 1
|
backup_retention_period = 1
|
||||||
|
|
||||||
|
publicly_accessible = true
|
||||||
|
|
||||||
parameter_group_name = "default.mysql5.6"
|
parameter_group_name = "default.mysql5.6"
|
||||||
|
|
||||||
skip_final_snapshot = false
|
skip_final_snapshot = false
|
||||||
|
@ -578,6 +580,7 @@ resource "aws_db_instance" "no_snapshot" {
|
||||||
instance_class = "db.t1.micro"
|
instance_class = "db.t1.micro"
|
||||||
name = "baz"
|
name = "baz"
|
||||||
password = "barbarbarbar"
|
password = "barbarbarbar"
|
||||||
|
publicly_accessible = true
|
||||||
username = "foo"
|
username = "foo"
|
||||||
security_group_names = ["default"]
|
security_group_names = ["default"]
|
||||||
backup_retention_period = 1
|
backup_retention_period = 1
|
||||||
|
|
Loading…
Reference in New Issue