File tree Expand file tree Collapse file tree
infrastructure/modules/amp_branch Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ resource "aws_amplify_branch" "main" {
22 app_id = var. amplify_app_id
33 description = var. description
44 branch_name = var. branch
5- display_name = var. name
5+ display_name = var. display_name
66 enable_pull_request_preview = var. enable_pull_request_preview
77 enable_auto_build = var. enable_auto_build
88 stage = var. stage
Original file line number Diff line number Diff line change @@ -75,6 +75,12 @@ variable "branch" {
7575 type = string
7676}
7777
78+ variable "display_name" {
79+ description = " The display name of the branch app being deployed"
80+ type = string
81+ default = null
82+ }
83+
7884variable "enable_auto_build" {
7985 type = bool
8086 description = " Enable the auto build of the branch code as well as just the resources for it"
You can’t perform that action at this time.
0 commit comments