-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor to move variables to separate file
- Loading branch information
1 parent
d62a7eb
commit 552e816
Showing
2 changed files
with
27 additions
and
28 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
27 changes: 27 additions & 0 deletions
27
web/deploy/terraform/modules/shared_resources/variables.tf
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,27 @@ | ||
# tflint-ignore: terraform_unused_declarations | ||
variable "aws_region" { | ||
description = "AWS region" | ||
default = "us-east-1" | ||
type = string | ||
} | ||
|
||
# tflint-ignore: terraform_unused_declarations | ||
variable "s3_bucket" { | ||
description = "S3 bucket for Terraform state" | ||
default = "osm-storage" | ||
type = string | ||
} | ||
|
||
# tflint-ignore: terraform_unused_declarations | ||
variable "dynamodb_table" { | ||
description = "DynamoDB table for Terraform state locking" | ||
default = "terraform-locks" | ||
type = string | ||
} | ||
|
||
# tflint-ignore: terraform_unused_declarations | ||
variable "ssh_port" { | ||
description = "Non-standard port for SSH" | ||
default = 22 | ||
type = number | ||
} |