1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/terraform/azure/service-principal/variables.tf

17 lines
329 B
HCL

variable "application_display_name" {
type = string
description = "Metadata name to use."
}
variable "application_owners" {
type = list(string)
}
variable "issuer" {
type = string
}
variable "audiences" {
type = list(string)
default = ["api://AzureADTokenExchange"]
}
variable "subject" {
type = string
}