variables.tf 329 B

1234567891011121314151617
  1. variable "application_display_name" {
  2. type = string
  3. description = "Metadata name to use."
  4. }
  5. variable "application_owners" {
  6. type = list(string)
  7. }
  8. variable "issuer" {
  9. type = string
  10. }
  11. variable "audiences" {
  12. type = list(string)
  13. default = ["api://AzureADTokenExchange"]
  14. }
  15. variable "subject" {
  16. type = string
  17. }