Variable declaration file added (reported by blowfish)
This commit is contained in:
parent
3afe81666a
commit
9dc50cb72c
29
terraform/aws/variables.tf
Normal file
29
terraform/aws/variables.tf
Normal file
@ -0,0 +1,29 @@
|
||||
variable "aws_region" {
|
||||
description = "The AWS region in which resources will be created."
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "aws_security_group" {
|
||||
description = "The ID of the security group."
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "aws_instance_type" {
|
||||
description = "The type of EC2 instance to create."
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "aws_key_pair_name" {
|
||||
description = "The name of the AWS key pair."
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "aws_user_data_file_path" {
|
||||
description = "Path to the user data script."
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "aws_instance_count" {
|
||||
description = "Number of instances to create."
|
||||
type = number
|
||||
}
|
Loading…
Reference in New Issue
Block a user