init: copied modules from lawndale-infra

This commit is contained in:
2022-05-26 00:40:29 +02:00
commit 414feb48ee
39 changed files with 1435 additions and 0 deletions

19
remote-state/outputs.tf Normal file
View File

@@ -0,0 +1,19 @@
output "kms_key" {
value = aws_kms_key.this
}
output "lock_table" {
value = aws_dynamodb_table.lock
}
output "terraform_policy" {
value = aws_iam_policy.terraform
}
output "bucket_name" {
value = local.bucket_name
}
output "lock_table_name" {
value = local.table_name
}