init: copy from lawndale-infra
This commit is contained in:
37
provider.tf
Normal file
37
provider.tf
Normal file
@@ -0,0 +1,37 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 4.9.0"
|
||||
}
|
||||
|
||||
gitea = {
|
||||
source = "malarinv/gitea"
|
||||
}
|
||||
|
||||
helm = {
|
||||
source = "hashicorp/helm"
|
||||
version = "2.5.1"
|
||||
}
|
||||
|
||||
kubernetes = {
|
||||
source = "hashicorp/kubernetes"
|
||||
version = "2.11.0"
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
provider "gitea" {
|
||||
base_url = "https://${local.gitea_server}"
|
||||
token = "915f506e315f263bec1ee7440dff065395e81462"
|
||||
}
|
||||
|
||||
provider "aws" {
|
||||
# Configuration options
|
||||
default_tags {
|
||||
tags = {
|
||||
"managed-by" = "terraform"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user