Skip to content

Commit

Permalink
doc(tls_mutual_authentication): replace lets-encrypt with certainly
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist committed Apr 15, 2024
1 parent 4ccb773 commit d07c99f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/tls_mutual_authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ resource "fastly_service_vcl" "example" {
resource "fastly_tls_subscription" "www" {
domains = [for domain in fastly_service_vcl.example.domain : domain.name if domain.name == "www.${var.zone}"]
certificate_authority = "lets-encrypt"
certificate_authority = "certainly"
}
resource "dnsimple_zone_record" "www_acme_challenge" {
Expand Down Expand Up @@ -160,7 +160,7 @@ resource "fastly_service_vcl" "example" {
resource "fastly_tls_subscription" "example" {
domains = [for domain in fastly_service_vcl.example.domain : domain.name]
certificate_authority = "lets-encrypt"
certificate_authority = "certainly"
}
resource "dnsimple_zone_record" "example_acme_challenge" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "fastly_service_vcl" "example" {

resource "fastly_tls_subscription" "www" {
domains = [for domain in fastly_service_vcl.example.domain : domain.name if domain.name == "www.${var.zone}"]
certificate_authority = "lets-encrypt"
certificate_authority = "certainly"
}

resource "dnsimple_zone_record" "www_acme_challenge" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ resource "fastly_service_vcl" "example" {

resource "fastly_tls_subscription" "example" {
domains = [for domain in fastly_service_vcl.example.domain : domain.name]
certificate_authority = "lets-encrypt"
certificate_authority = "certainly"
}

resource "dnsimple_zone_record" "example_acme_challenge" {
Expand Down

0 comments on commit d07c99f

Please sign in to comment.