Skip to content
Snippets Groups Projects
variables-local.tf 365 B
Newer Older
  • Learn to ignore specific revisions
  • ## Terraform local execution
    
    variable "FORGE_PROJECT_ID" {
      type        = string
      description = "Forge Project ID"
      sensitive   = true
    }
    
    variable "FORGE_USERNAME" {
      type        = string
      description = "Forge Username"
      sensitive   = true
    }
    
    variable "FORGE_ACCESS_TOKEN" {
      type        = string
      description = "Forge Access Token"
      sensitive   = true
    }