blob: f3ed77bbd8c137c88b355dcc7293e829172f4fff (
plain)
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
|
terraform {
backend "s3" {
bucket = "within-tf-state"
key = "k8s/aeacus/external-dns"
region = "us-east-1"
}
}
resource "aws_dynamodb_table" "external_dns_crd" {
name = "external-dns-crd-aeacus"
billing_mode = "PROVISIONED"
read_capacity = 1
write_capacity = 1
table_class = "STANDARD"
attribute {
name = "k"
type = "S"
}
hash_key = "k"
}
resource "aws_dynamodb_table" "external_dns_ingress" {
name = "external-dns-ingress-aeacus"
billing_mode = "PROVISIONED"
read_capacity = 1
write_capacity = 1
table_class = "STANDARD"
attribute {
name = "k"
type = "S"
}
hash_key = "k"
}
|