-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(checks): add Terraform validations
- Loading branch information
Showing
4 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ _: { | |
nativeBuildInputs = [ | ||
pkgs.deadnix | ||
pkgs.opentofu | ||
pkgs.tflint | ||
]; | ||
|
||
shellHook = '' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
variable "aws_access_key" { | ||
type = string | ||
sensitive = true | ||
type = string | ||
sensitive = true | ||
description = "The AWS root access key ID" | ||
} | ||
|
||
variable "aws_secret_key" { | ||
type = string | ||
sensitive = true | ||
type = string | ||
sensitive = true | ||
description = "The AWS root access key value" | ||
} | ||
|
||
variable "cloudflare_api_token" { | ||
type = string | ||
sensitive = true | ||
type = string | ||
sensitive = true | ||
description = "The Cloudflare API token with permissions: DNS:Edit" | ||
} | ||
|
||
variable "hcloud_token" { | ||
type = string | ||
sensitive = true | ||
type = string | ||
sensitive = true | ||
description = "The Hetzner Cloud API token for a particular project" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters