forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
30 lines (27 loc) · 630 Bytes
/
Copy pathmain.tf
File metadata and controls
30 lines (27 loc) · 630 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
terraform {
required_version = ">= 1.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
# Uncomment and configure for remote state management
# backend "s3" {
# bucket = "your-terraform-state-bucket"
# key = "nova-rewards/terraform.tfstate"
# region = "us-east-1"
# encrypt = true
# dynamodb_table = "terraform-locks"
# }
}
provider "aws" {
region = var.aws_region
default_tags {
tags = {
Environment = var.environment
Project = "NovaRewards"
ManagedBy = "Terraform"
}
}
}