-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvariables.tf
executable file
·45 lines (39 loc) · 1.12 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
variable "additional_aws_tags" {
description = "Additional tags to be applied to AWS resources."
type = map(string)
default = {}
}
variable "tags" {
description = "Tags to be applied to AWS resources."
type = map(string)
default = {
Environment = ""
Name = ""
cost = ""
}
}
variable "aws_region" {
description = "Name of the AWS region where S3 bucket is to be created."
default = "us-east-1"
type = string
}
variable "key_pair_name" {
description = "Specifies the name to be assigned to the key pair that will be generated."
default = ""
type = string
}
variable "environment" {
description = "Specifies the identifier for the environment where the key pair will be used."
default = ""
type = string
}
variable "ssm_parameter_path" {
description = "Specifies the SSM parameter name that will be used to store the generated key pair."
default = "/example/ssm"
type = string
}
variable "create_private_key" {
description = "Whether to create the private key or not."
default = true
type = bool
}