-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
83 lines (66 loc) · 1.44 KB
/
main.tf
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
terraform {
required_providers {
aws = {
version = ">= 4.0"
source = "hashicorp/aws"
}
}
}
provider "aws" {
region = var.aws_region
}
locals {
tags = {
Terraform = "This resource was created by Terraform"
Purpose = "Terraform State Store"
}
}
resource "aws_s3_bucket" "terraform" {
bucket = var.bucket_name
lifecycle {
prevent_destroy = true
}
tags = local.tags
}
resource "aws_s3_bucket_acl" "terraform" {
bucket = aws_s3_bucket.terraform.id
acl = "private"
}
resource "aws_s3_bucket_versioning" "terraform" {
bucket = aws_s3_bucket.terraform.id
versioning_configuration {
status = "Enabled"
}
}
resource "aws_s3_bucket_server_side_encryption_configuration" "terraform" {
bucket = aws_s3_bucket.terraform.id
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
resource "aws_s3_bucket_public_access_block" "terraform" {
bucket = aws_s3_bucket.terraform.id
block_public_acls = true
ignore_public_acls = true
block_public_policy = true
restrict_public_buckets = true
}
resource "aws_dynamodb_table" "terraform" {
name = "${var.bucket_name}-terraform-lock"
billing_mode = "PAY_PER_REQUEST"
hash_key = "LockID"
attribute {
name = "LockID"
type = "S"
}
ttl {
attribute_name = ""
enabled = false
}
lifecycle {
prevent_destroy = true
}
tags = local.tags
}