Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Morgan committed Oct 17, 2024
1 parent 7b6fa9a commit 778bcc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ check "grafana_health_check" {
data "http" "test" {
url = "http://${aws_instance.grafana_server.public_ip}:3000"
retry {
attempts=5
attempts = 5
}
}
assert {
condition = data.http.test.status_code == 200
condition = data.http.test.status_code == 200
error_message = "Grafana is inaccessible on port 3000."
}
}
2 changes: 1 addition & 1 deletion terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
version = "5.69.0"
}
http = {
source = "hashicorp/http"
source = "hashicorp/http"
version = "3.4.5"
}
}
Expand Down

0 comments on commit 778bcc9

Please sign in to comment.