-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproviders.tf
More file actions
38 lines (33 loc) · 702 Bytes
/
providers.tf
File metadata and controls
38 lines (33 loc) · 702 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
31
32
33
34
35
36
37
38
terraform {
required_version = ">= 1.9.8"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 6.26"
}
}
}
provider "aws" {
region = var.region
allowed_account_ids = [var.current_account_number]
default_tags {
tags = {
CodeAt = "https://github.com/YOUR_ORG/YOUR_REPO"
terraform = "true"
Owner = "YOUR_TEAM"
}
}
}
# Provider in Uw2 region for Bedrock/KB resources
provider "aws" {
alias = "west2"
region = "us-west-2"
default_tags {
tags = {
CodeAt = "https://github.com/YOUR_ORG/YOUR_REPO"
terraform = "true"
Owner = "YOUR_TEAM"
Project = "Vera"
}
}
}