Fix single quote in TF init (#4182)

Message from terraform init : 
Single quotes are not valid. Use double quotes (") to enclose strings.
pull/4287/head
zimtls 2 years ago committed by GitHub
parent 5563a7c2d4
commit c61ba96f69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -88,7 +88,7 @@ To configure your provider to use the recovery KMS workflow, provide the KMS blo
```hcl
provider "boundary" {
addr = 'https://boundary.mycorp.com:9200'
addr = "https://boundary.mycorp.com:9200"
recovery_kms_hcl = <<EOT
kms "aead" {
purpose = "recovery"

Loading…
Cancel
Save