-
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.
This commit updates the main.tf and variables.tf files. In main.tf: - The regions in the data "aws_ip_ranges" block have been formatted for better readability. - The data "dns_a_record_set" block has been corrected to use double quotes for the block name. - The local.proxy_vars block has been indented properly for better readability. - The security_group_ids attribute in the resource "aws_vpc_endpoint" block has been formatted for better readability. - The extra_environment_vars attribute in the module "github-runner" block has been formatted for better readability. - The runner_labels attribute in the module "github-runner" block now converts the var.repo_org value to lowercase. In variables.tf: - The variable "create_ecs_cluster" has been properly defined with double quotes for the block name and correct indentation. No issues were found in the versions.tf file.
- Loading branch information
Dave Arnold
committed
Oct 17, 2024
1 parent
3f4f8e8
commit 5c44591
Showing
3 changed files
with
18 additions
and
10 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
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,8 @@ | ||
| terraform { | ||
| required_providers { | ||
| aws = { | ||
| source = "hashicorp/aws" | ||
| version = "~> 5.70.0" | ||
| } | ||
| } | ||
| } |