Skip to content

Commit

Permalink
Change to file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattias Gees committed Feb 5, 2025
1 parent 5c4adfa commit f81e548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ variable "auth-type" {
}

variable "root-CA" {
default = "ROOT_CA"
default = "root.pem"
}
2 changes: 1 addition & 1 deletion deploy/terraform/aws/x509.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_rolesanywhere_trust_anchor" "x509-spire" {
enabled = true
source {
source_data {
x509_certificate_data = var.root-CA
x509_certificate_data = file(var.root-CA)
}
source_type = "CERTIFICATE_BUNDLE"
}
Expand Down

0 comments on commit f81e548

Please sign in to comment.