This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
plugin "aws" { | ||
enabled = true | ||
|
||
version = "0.27.0" | ||
source = "github.com/terraform-linters/tflint-ruleset-aws" | ||
} | ||
|
||
rule "terraform_required_providers" { | ||
enabled = true | ||
|
||
# defaults | ||
source = false | ||
version = true | ||
} |
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 |
---|---|---|
@@ -1,5 +1,23 @@ | ||
variable "hosted_zone_id" {} | ||
variable "hosted_zone_dns" {} | ||
variable "subdomains" {} | ||
variable "ttl" {} | ||
variable "endpoint" {} | ||
variable "hosted_zone_id" { | ||
description = "The ID of the hosted zone to create records in." | ||
type = string | ||
} | ||
|
||
|
||
variable "hosted_zone_dns" { | ||
description = "The DNS name of the hosted zone to create records in." | ||
type = string | ||
} | ||
|
||
variable "subdomains" { | ||
description = "A list of subdomains to create records for." | ||
type = list(string) | ||
} | ||
variable "ttl" { | ||
description = "The TTL of the records to create." | ||
type = number | ||
} | ||
variable "endpoint" { | ||
description = "The endpoint to create records for." | ||
type = string | ||
} |