resource "aws_db_instance" "main" { | |
allocated_storage = 10 | |
storage_type = "gp2" | |
engine = "mysql" | |
engine_version = "5.7" | |
instance_class = "db.t2.micro" | |
name = "main" | |
username = "root" | |
password = "${data.external.something_in_one_password.result.password}" | |
parameter_group_name = "default.mysql5.7" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment