Skip to content
Snippets Groups Projects
variables.tf 653 B
Newer Older
  • Learn to ignore specific revisions
  • 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
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
      default = "registry.code.fbi.h-da.de/danet/gosdn:latest"
    
    variable "ceos_tag" {
      type = string
    
      default = "registry.code.fbi.h-da.de/danet/containers/ceos:latest"
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    variable "network_name" {
      type = string
      default = ""
    
    }
    
    variable "ceos_address" {
      type = string
    }
    
    variable "gosdn_address" {
      type = string