mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-28 21:01:57 +03:00
fix parameter group name
This commit is contained in:
+1
-1
@@ -27,7 +27,7 @@ resource "aws_db_instance" "mariadb" {
|
|||||||
username = "root" # username
|
username = "root" # username
|
||||||
password = "${var.RDS_PASSWORD}" # password
|
password = "${var.RDS_PASSWORD}" # password
|
||||||
db_subnet_group_name = "${aws_db_subnet_group.mariadb-subnet.name}"
|
db_subnet_group_name = "${aws_db_subnet_group.mariadb-subnet.name}"
|
||||||
parameter_group_name = "mariadb-parameters"
|
parameter_group_name = "${aws_db_parameter_group.mariadb-parameters.name}"
|
||||||
multi_az = "false" # set to true to have high availability: 2 instances synchronized with each other
|
multi_az = "false" # set to true to have high availability: 2 instances synchronized with each other
|
||||||
vpc_security_group_ids = ["${aws_security_group.allow-mariadb.id}"]
|
vpc_security_group_ids = ["${aws_security_group.allow-mariadb.id}"]
|
||||||
storage_type = "gp2"
|
storage_type = "gp2"
|
||||||
|
|||||||
Reference in New Issue
Block a user