Skip to content

Commit

Permalink
Fix variable definition formatting in variables.tf for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Arnold committed Dec 4, 2024
1 parent b969d20 commit f5445f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,12 @@ EOT
type = object({
advanced_security = optional(object({
status = string
}, { status = "disabled" }))
}), { status = "disabled" })
secret_scanning = optional(object({
status = string
}, { status = "disabled" }))
}), { status = "disabled" })
secret_scanning_push_protection = optional(object({
status = string
}, { status = "disabled" }))
}), { status = "disabled" })
})
}

0 comments on commit f5445f6

Please sign in to comment.