variables.tf 866 B

1234567891011121314151617181920212223242526272829
  1. variable "key_vault_display_name" {
  2. type = string
  3. description = "Metadata name to use."
  4. }
  5. variable "resource_group_name" {
  6. type = string
  7. description = "The Name which should be used for this Resource Group"
  8. }
  9. variable "resource_group_location" {
  10. type = string
  11. description = "The Azure Region where the Resource Group should exist"
  12. }
  13. variable "tenant_id" {
  14. type = string
  15. description = "Azure Tenant ID"
  16. }
  17. variable "client_object_id" {
  18. type = string
  19. description = "The object ID of a user, service principal or security group in the Microsoft Entra ID tenant for the vault"
  20. }
  21. variable "eso_sp_object_id" {
  22. type = string
  23. description = "The object ID of the ESO service account"
  24. }
  25. variable "eso_e2e_sp_object_id" {
  26. type = string
  27. description = "The object ID of the ESO e2e service account"
  28. }