Skip to content

Commit

Permalink
Add typing to sandbox-deploy/variables.tf
Browse files Browse the repository at this point in the history
Co-authored-by: anna-m-gsa <167908357+anna-m-gsa@users.noreply.github.com>
  • Loading branch information
rahearn and anna-m-gsa authored Dec 18, 2024
1 parent 74c0ade commit 8d09ef6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions sandbox-deploy/variables.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
variable "cf_user" {}
variable "cf_user" {

Check failure on line 1 in sandbox-deploy/variables.tf

View workflow job for this annotation

GitHub Actions / Integration test

File is not in canonical format (terraform fmt)

Check failure on line 1 in sandbox-deploy/variables.tf

View workflow job for this annotation

GitHub Actions / Lint sandbox

File is not in canonical format (terraform fmt)
type = string
}
variable "cf_password" {
type = string
sensitive = true
}
variable "cf_space_prefix" {}
variable "cf_space_prefix" {
type = string
}
variable "ci_server_token" {
type = string
sensitive = true
}
variable "docker_hub_user" {}
variable "docker_hub_user" {
type = string
}
variable "docker_hub_token" {
type = string
sensitive = true
}
variable "developer_emails" {
Expand Down

0 comments on commit 8d09ef6

Please sign in to comment.