updated git ignore
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
resource "aws_s3_bucket" "s3_bucket" {
|
||||
bucket = format("%s-%s",var.bucket_name,var.env)
|
||||
acl = "private"
|
||||
|
||||
tags = {
|
||||
Name = var.bucket_name
|
||||
Environment = var.env
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
output "arn" {
|
||||
description = "ARN of the bucket"
|
||||
value = aws_s3_bucket.s3_bucket.arn
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
# Input variable definitions
|
||||
|
||||
variable "bucket_name" {
|
||||
description = "Name of bucket"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "env" {
|
||||
description = "Environment like dev, prod"
|
||||
type = string
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user