initial commit
This commit is contained in:
19
environments/development/providers.tf
Normal file
19
environments/development/providers.tf
Normal file
@@ -0,0 +1,19 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "< 6.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "aws" {
|
||||
region = var.region
|
||||
|
||||
default_tags {
|
||||
tags = {
|
||||
Environment = var.environment
|
||||
Service = "Kubernetes"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user