Initial commit - realms platform
This commit is contained in:
parent
c590ab6d18
commit
c717c3751c
234 changed files with 74103 additions and 15231 deletions
39
devops/terraform/modules/firewalls/variables.tf
Normal file
39
devops/terraform/modules/firewalls/variables.tf
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# =============================================================================
|
||||
# Firewalls Module Variables
|
||||
# =============================================================================
|
||||
|
||||
variable "project_name" {
|
||||
description = "Name of the project"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "environment" {
|
||||
description = "Environment name"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "vpc_ip_range" {
|
||||
description = "VPC IP range for internal traffic"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "jump_host_droplet_id" {
|
||||
description = "ID of the jump host droplet"
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "jump_host_ssh_port" {
|
||||
description = "SSH port for jump host"
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "forgejo_droplet_id" {
|
||||
description = "ID of the Forgejo droplet"
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "forgejo_git_ssh_port" {
|
||||
description = "Git SSH port for Forgejo"
|
||||
type = number
|
||||
default = 2222
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue