Skip to content

Commit

Permalink
Run terraform fmt
Browse files Browse the repository at this point in the history
* disable duplicative terraform-fmt-check run since the root level recurses into sandbox-deploy
  • Loading branch information
rahearn committed Dec 18, 2024
1 parent 8d09ef6 commit c8c39b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,13 @@ jobs:
apt-get install -y zip
lint-sandbox:
validate-sandbox:
runs-on: ubuntu-latest
name: Lint sandbox
name: Validate sandbox
steps:
- uses: actions/checkout@v4

- name: terraform validate
uses: dflook/terraform-validate@v1
with:
path: sandbox-deploy

- name: terraform fmt
uses: dflook/terraform-fmt-check@v1
with:
path: sandbox-deploy
6 changes: 3 additions & 3 deletions sandbox-deploy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ variable "cf_user" {
type = string
}
variable "cf_password" {
type = string
type = string
sensitive = true
}
variable "cf_space_prefix" {
type = string
}
variable "ci_server_token" {
type = string
type = string
sensitive = true
}
variable "docker_hub_user" {
type = string
}
variable "docker_hub_token" {
type = string
type = string
sensitive = true
}
variable "developer_emails" {
Expand Down

0 comments on commit c8c39b2

Please sign in to comment.