Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrampeter committed Jul 6, 2022
1 parent bdf629a commit e118936
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/standalone-external-rhel8-worker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "random_pet" "main" {
# Store TFE License as secret
# ---------------------------
module "secrets" {
count = var.license_file == null ? 0 : 1
count = var.license_file == null ? 0 : 1
source = "../../fixtures/secrets"

license = {
Expand Down
2 changes: 1 addition & 1 deletion tests/standalone-mounted-disk/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "random_pet" "main" {
# Store TFE License as secret
# ---------------------------
module "secrets" {
count = var.license_file == null ? 0 : 1
count = var.license_file == null ? 0 : 1
source = "../../fixtures/secrets"

license = {
Expand Down

0 comments on commit e118936

Please sign in to comment.