Skip to content

Commit

Permalink
style(terraform): Move required version to top of terraform block
Browse files Browse the repository at this point in the history
  • Loading branch information
chris3ware committed Aug 1, 2022
1 parent 236ca5f commit f8c8f34
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions terraform/providers.tf → terraform/vpc/providers.tf
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
provider "aws" {
profile = "aws-net-spec-creds"
profile = "ans-gen"
region = "us-east-1"

default_tags {
tags = {
"Project" = "aws-net-spec"
"Environment" = "org"
"Project" = "aws-network-specialty"
"Environment" = "network-specialty-general"
"Terraform" = true
}
}
}

terraform {
required_version = ">= 1.2.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.71.0"
}
}
required_version = ">= 1.2.0"

backend "remote" {
organization = "3ware"
Expand Down
File renamed without changes.

0 comments on commit f8c8f34

Please sign in to comment.