Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Swap order of type and default
Browse files Browse the repository at this point in the history
  • Loading branch information
brikis98 committed Aug 31, 2020
1 parent 2e7a851 commit c031694
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/private-tls-cert/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,25 +81,25 @@ variable "allowed_uses" {

variable "permissions" {
description = "The Unix file permission to assign to the cert files (e.g. 0600)."
default = "0600"
type = string
default = "0600"
}

variable "private_key_algorithm" {
description = "The name of the algorithm to use for private keys. Must be one of: RSA or ECDSA."
default = "RSA"
type = string
default = "RSA"
}

variable "private_key_ecdsa_curve" {
description = "The name of the elliptic curve to use. Should only be used if var.private_key_algorithm is ECDSA. Must be one of P224, P256, P384 or P521."
default = "P256"
type = string
default = "P256"
}

variable "private_key_rsa_bits" {
description = "The size of the generated RSA key in bits. Should only be used if var.private_key_algorithm is RSA."
default = "2048"
type = string
default = "2048"
}

0 comments on commit c031694

Please sign in to comment.