Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chibaba committed Feb 28, 2024
1 parent e9e544c commit 526790d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions infras/gitops3/iteration3/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Variable Declaration
variable "environment" {
description = "The environment e.g uat or prod or dev"
type = string
}

variable "region" {
description = "The region where we wish to deploy to"
type = string
}

variable "ssh_key_name" {
description = "SSH Keyname"
type = string
}

variable "instance_type" {
description = "EC2 instance type"
type = string
}


0 comments on commit 526790d

Please sign in to comment.