We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 417aa32 commit 482b378Copy full SHA for 482b378
terraform/prod/rds.tf
@@ -1,5 +1,5 @@
1
resource "aws_db_instance" "db" {
2
- identifier = "rails-blog"
+ identifier = "${local.env}-rails-blog"
3
allocated_storage = 20
4
max_allocated_storage = 1000
5
storage_type = "gp2"
terraform/prod/variables.tf
@@ -5,7 +5,7 @@ locals {
6
variable "vpc_cidr" {
7
type = string
8
- default = "10.10.0.0/16"
+ default = "10.20.0.0/16"
9
}
10
11
variable "github_owner" {
@@ -18,6 +18,11 @@ variable "github_repo" {
18
default = "rails-blog-example"
19
20
21
+variable "target_branch" {
22
+ type = string
23
+ default = "master"
24
+}
25
+
26
variable "remote_backend" {
27
28
description = "S3 bucket that stores terraform.tfstate"
0 commit comments