move admin key file and s3 policy to files/

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-05-31 11:36:28 -04:00
parent d389efdb97
commit 14e2c6e010
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
4 changed files with 2 additions and 2 deletions

2
dev.tf
View File

@ -2,7 +2,7 @@
resource "aws_key_pair" "admin" {
key_name = "admin-key"
public_key = "${file("admin.pub")}"
public_key = "${file("files/admin.pub")}"
}
data "aws_ami" "ubuntu" {

View File

@ -31,7 +31,7 @@ resource "aws_s3_bucket" "tf-state" {
Name = "Terraform State Store"
}
policy = "${file("s3policy.json")}"
policy = "${file("files/s3-policy.json")}"
versioning {
enabled = true