Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
variables.tf 450 B
variable "integration_registry" {
  type = string
}

variable "integration_username" {
  type = string
}

variable "integration_access_token" {
  type = string
}
variable "tls_key" {
  type = string
}

variable "tls_cert" {
  type = string
}

variable "tls_ca_cert" {
  type = string
}

variable "container_tag" {
  type = string
  default = "registry.code.fbi.h-da.de/cocsn/gosdn:latest"
}

variable "network_name" {
  type = string
  default = ""
}