federate-your-repos/variables.tf

11 lines
182 B
Terraform
Raw Normal View History

2023-04-22 09:59:07 +00:00
variable "stage" {}
variable "name" {}
variable "license" {}
variable "repo_meissa_token_ro" {}
locals {
name_with_stage = var.stage == "prod" ? var.name : "test-${var.name}"
}