From 57bd813667bbb0bb573d53c42b9f9e5b622b7a0e Mon Sep 17 00:00:00 2001 From: LABOUARDY Mohamed Date: Wed, 19 Apr 2023 12:50:01 +0200 Subject: [PATCH] chore: remove unused variables --- jenkins-cluster-on-aws/terraform/variables.tf | 101 ------------------ 1 file changed, 101 deletions(-) diff --git a/jenkins-cluster-on-aws/terraform/variables.tf b/jenkins-cluster-on-aws/terraform/variables.tf index 420b4ed..3a27ec9 100644 --- a/jenkins-cluster-on-aws/terraform/variables.tf +++ b/jenkins-cluster-on-aws/terraform/variables.tf @@ -58,104 +58,3 @@ variable "hosted_zone_id" { type = string description = "Route53 zone ID" } - - -/* -variable "shared_credentials_file" { - type = string - description = "AWS credentials file path" -} - -variable "aws_profile" { - type = string - description = "AWS profile" -} - -variable "author" { - type = string - description = "Created by" -} - -variable "availability_zones" { - type = list - description = "List of Availability Zones" -} - -variable "public_key" { - type = string - description = "SSH public key path" -} - -variable "hosted_zone_id" { - type = string - description = "Route53 hosted zone id" -} - -variable "domain_name" { - type = string - description = "Domain name" -} - -variable "ssl_arn" { - type = string - description = "ACM SSL ARN" -} - -variable "jenkins_username" { - type = string - description = "Jenkins admin user" -} - -variable "jenkins_password" { - type = string - description = "Jenkins admin password" -} - -variable "jenkins_credentials_id" { - type = string - description = "Jenkins workers SSH based credentials id" -} - -// Default values - -variable "vpc_name" { - type = string - description = "VPC name" - default = "management" -} - -variable "cidr_block" { - type = string - description = "VPC CIDR block" - default = "10.0.0.0/16" -} - -variable "public_subnets_count" { - type = number - description = "Number of public subnets" - default = 2 -} - -variable "private_subnets_count" { - type = number - description = "Number of private subnets" - default = 2 -} - -variable "bastion_instance_type" { - type = string - description = "Bastion instance type" - default = "t2.micro" -} - -variable "jenkins_master_instance_type" { - type = string - description = "Jenkins master EC2 instance type" - default = "t2.large" -} - -variable "jenkins_worker_instance_type" { - type = string - description = "Jenkins worker EC2 instance type" - default = "t2.medium" -}*/ \ No newline at end of file