-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables_aws_provider_auth.tf
59 lines (50 loc) · 1.52 KB
/
variables_aws_provider_auth.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
55
56
57
58
59
variable "profile" {
description = "The aws profile to create aws provider with"
default = ""
type = string
}
variable "external_id" {
description = "The aws external id to create aws provider with"
default = ""
type = string
}
variable "access_key" {
description = "The aws access key to create aws provider with"
default = ""
type = string
}
variable "secret_key" {
description = "The aws secret key to create aws provider with"
default = ""
type = string
}
variable "session_name" {
description = "The aws session name to create aws provider with"
default = "firefly"
type = string
}
variable "aws_assume_role_arn" {
description = "The aws assume role arn to create aws provider with"
default = ""
type = string
}
variable "aws_assume_role_external_id" {
description = "The aws assume role external id to create aws provider with"
default = ""
type = string
}
variable "aws_assume_web_identity_role_arn" {
description = "The aws assume web identity role arn to create aws provider with"
default = ""
type = string
}
variable "aws_assume_web_identity_role_token" {
description = "Value of a web identity token from an OpenID Connect to create aws provider with"
default = ""
type = string
}
variable "aws_assume_web_identity_role_token_file" {
description = "A File containing a web identity token from an OpenID Connect to create aws provider with"
default = ""
type = string
}