-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (38 loc) · 909 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
variable "github_branch" {
description = "Branch of the GitHub repository"
type = string
default = "main"
}
variable "github_repo_name" {
description = "Name of the GitHub repository"
type = string
default = "NYU-AL"
}
variable "github_repo_owner" {
description = "Owner of the GitHub repository"
type = string
default = "Alice-2096"
}
variable "aws_region" {
description = "AWS region"
type = string
default = "us-east-1"
}
variable "codepipeline_iam_role_name" {
description = "ARN of the codepipeline IAM role"
type = string
default = "nyu-codepipeline-iam-role"
}
variable "environment" {
default = "dev"
}
variable "ecr_repo_url" {
description = "URL of the ECR repository"
type = string
}
variable "ecr_repo_name" {
default = "nyu-vip"
}
variable "container_name" {
default = "nyu-vip-container"
}