Skip to content

Commit

Permalink
fix some more filebase64 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte committed Mar 1, 2019
1 parent 92a9dd6 commit af1ac83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_api_management_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ resource "azurerm_api_management" "test" {
portal {
host_name = "portal.terraform.io"
certificate = "${filebase64("testdata/api_management_portal_test.pfx"))}"
certificate = "${filebase64("testdata/api_management_portal_test.pfx")}"
certificate_password = "terraform"
}
}
Expand Down
4 changes: 2 additions & 2 deletions azurerm/resource_arm_application_gateway_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ resource "azurerm_application_gateway" "test" {
ssl_certificate {
name = "${local.ssl_certificate_name}"
data = "${file("testdata/application_gateway_test.pfx")}"
data = "${filebase64("testdata/application_gateway_test.pfx")}"
password = "terraform"
}
}
Expand Down Expand Up @@ -1392,7 +1392,7 @@ resource "azurerm_application_gateway" "test" {
ssl_certificate {
name = "${local.ssl_certificate_name}"
data = "${file("testdata/application_gateway_test_2.pfx")}"
data = "${filebase64("testdata/application_gateway_test_2.pfx")}"
password = "hello-world"
}
}
Expand Down

0 comments on commit af1ac83

Please sign in to comment.