From 9323678d3d46a22263d7e162e37c926ead049cce Mon Sep 17 00:00:00 2001 From: Kerin Cosford Date: Fri, 8 Apr 2016 16:12:07 +0100 Subject: [PATCH] Added identifier attribute to main RDS instance --- aws-db.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/aws-db.tf b/aws-db.tf index 7077ea1..904cf76 100644 --- a/aws-db.tf +++ b/aws-db.tf @@ -19,6 +19,7 @@ resource "aws_db_subnet_group" "main" { } resource "aws_db_instance" "main" { + identifier = "main-${var.environment}" allocated_storage = "${var.rds_allocated_storage}" engine = "postgres" engine_version = "9.4.5"