-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
53 lines (44 loc) · 1.07 KB
/
variables.tf
File metadata and controls
53 lines (44 loc) · 1.07 KB
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
50
51
52
53
variable "aws_region" {
type = string
description = "AWS region to deploy resources"
}
variable "instance_type" {
type = string
default = "t3.micro"
description = "EC2 instance type for Jenkins"
}
variable "key_name" {
type = string
description = "Name of the AWS key pair"
}
variable "github_repo_url" {
type = string
description = "GitHub repository URL"
}
variable "github_token" {
type = string
description = "GitHub Personal Access Token"
sensitive = true
}
variable "gmail_user" {
type = string
description = "Gmail username for Jenkins notifications"
}
variable "gmail_app_password" {
type = string
description = "Gmail App password for Jenkins notifications"
sensitive = true
}
variable "jenkins_admin_user" {
type = string
description = "Jenkins admin username"
}
variable "jenkins_admin_password" {
type = string
description = "Jenkins admin password"
sensitive = true
}
variable "TF_VER" {
type = string
description = "Terraform version to install"
}