-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
55 lines (45 loc) · 1.68 KB
/
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
50
51
52
53
54
variable "projectID" {
description = "This is the project ID of the project containing Workload Identity Federation"
type = string
}
variable "projectNumber" {
description = "This is the project number of the project containing Workload Identity Federation"
type = string
}
variable "poolID" {
description = "This is the ID of the Workload Identity Federation identity pool"
type = string
default = "bfidentitypool"
}
variable "displayName" {
description = "This is the display name of the Workload Identity Federation pool"
type = string
default = "bishopfoxidentitypool"
}
variable "providerID" {
description = "This is the ID of the Workload Identity Federation identity pool AWS provider"
type = string
default = "bfawsprovider"
}
variable "AWS_accountID" {
description = "This is the ID of the Bishop Fox AWS account for the Workload Identity Federation identity pool AWS provider"
type = string
}
variable "AWS_iamRole1" {
description = "This is the Bishop Fox IAM role for the Workload Identity Federation identity pool AWS provider"
type = string
}
variable "AWS_iamRole2" {
description = "This is the Bishop Fox IAM role for the Workload Identity Federation identity pool AWS provider"
type = string
}
variable "serviceAccountID" {
description = "This is the ID of the service account connected to the Workload Identity Federation identity pool"
type = string
default = "bfserviceaccount"
}
variable "serviceAccountDisplayName" {
description = "This is the display name of the Workload Identity Federation pool"
type = string
default = "BF_Service_Account"
}