Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Commit

Permalink
Use ACME API v2 server
Browse files Browse the repository at this point in the history
  • Loading branch information
duboisph committed Oct 22, 2019
1 parent 5ae6813 commit a3eda0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module "vault" {
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
| acm\_arn | The ACM ARN to use on the alb | string | n/a | yes |
| acme\_server | ACME server where to point `certbot` on the Teleport server to fetch an SSL certificate. Useful if you want to point to the letsencrypt staging server. | string | `"https://acme-v01.api.letsencrypt.org/directory"` | no |
| acme\_server | ACME server where to point `certbot` on the Teleport server to fetch an SSL certificate. Useful if you want to point to the letsencrypt staging server. | string | `"https://acme-v02.api.letsencrypt.org/directory"` | no |
| ami | The AMI ID to use for the vault instances | string | n/a | yes |
| dns\_root | The root domain to configure for vault | string | `"production.skyscrape.rs"` | no |
| dynamodb\_table\_name\_override | Override Vault's DynamoDB table name with this variable. This module will generate a name if this is left empty (default behavior) | string | `null` | no |
Expand Down
2 changes: 1 addition & 1 deletion vault/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ variable "dynamodb_table_name_override" {

variable "acme_server" {
description = "ACME server where to point `certbot` on the Teleport server to fetch an SSL certificate. Useful if you want to point to the letsencrypt staging server."
default = "https://acme-v01.api.letsencrypt.org/directory"
default = "https://acme-v02.api.letsencrypt.org/directory"
type = string
}

Expand Down

0 comments on commit a3eda0b

Please sign in to comment.