Files
nvhi-atsila-microservice/terraform/variables.tf

35 lines
692 B
Terraform
Raw Normal View History

2025-07-12 08:51:48 +00:00
variable "aws_region" {
2025-07-12 19:17:29 +00:00
description = "AWS region for resources"
type = string
default = "us-east-2"
2025-07-12 08:51:48 +00:00
}
variable "jenkins_ip_cidr" {
2025-07-12 19:17:29 +00:00
description = "CIDR block for SSH access from Jenkins"
2025-07-12 08:51:48 +00:00
type = string
}
variable "cluster_name" {
description = "Name of the ECS cluster"
type = string
}
variable "vpc_cidr" {
description = "VPC CIDR block"
type = string
}
variable "public_subnets" {
description = "Comma-separated public subnet CIDRs"
type = string
}
variable "instance_type" {
description = "EC2 instance type"
type = string
}
variable "key_pair_name" {
description = "EC2 Key Pair name"
type = string
2025-07-12 19:17:29 +00:00
}