Skip to content

Commit

Permalink
Merge pull request #267 from ComputeCanada/fix266
Browse files Browse the repository at this point in the history
Set cloudflare sshfp fingerprint to uppercase
  • Loading branch information
cmd-ntrf authored Oct 27, 2023
2 parents 234719b + adfc37f commit 40e89a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dns/cloudflare/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "cloudflare_record" "records" {
for_each = module.record_generator.records[count.index].data != null ? [module.record_generator.records[count.index].data] : []
content {
algorithm = data.value["algorithm"]
fingerprint = data.value["fingerprint"]
fingerprint = upper(data.value["fingerprint"])
type = data.value["type"]
}
}
Expand Down

0 comments on commit 40e89a7

Please sign in to comment.