vars.tf 638 B

1234567891011121314151617
  1. variable "purpose" {
  2. description = "String that will be appended to the CN that describes the purpose of this subordinate cert."
  3. type = string
  4. }
  5. variable "c2_accounts" { type = map }
  6. variable "root_authority_arn" { type = string }
  7. variable "tags" { type = map }
  8. variable "standard_tags" { type = map }
  9. variable "environment" { type = string }
  10. variable "aws_region" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "aws_partition" { type = string }
  13. variable "aws_partition_alias" { type = string }
  14. variable "common_services_account" { type = string }
  15. variable "instance_termination_protection" { type = bool }