-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
49 lines (40 loc) · 964 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
42
43
44
45
46
47
48
49
variable "aws_region" {
type = string
default = "ap-south-1"
}
variable "codecommit_repository_name" {
type = string
default = "infra-vpc-repo"
}
variable "s3_bucket_name" {
type = string
default = "raktim-infra-vpc-backend"
}
variable "codebuild_role_name" {
type = string
default = "infra-vpc-codebuild-role"
}
variable "codepipeline_role_name" {
type = string
default = "infra-vpc-codepipeline-role"
}
variable "codebuild_policy_name" {
type = string
default = "infra-vpc-codebuild-policy"
}
variable "codepipeline_policy_name" {
type = string
default = "infra-vpc-codepipeline-policy"
}
variable "codebuild_plan_project_name" {
type = string
default = "infra-vpc-codebuild-project-plan"
}
variable "codebuild_apply_project_name" {
type = string
default = "infra-vpc-codebuild-project-apply"
}
variable "codepipeline_name" {
type = string
default = "infra-vpc-codepipeline"
}