Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed region variable #5

Merged
merged 1 commit into from
Aug 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ resource "aws_s3_bucket" "default" {
acl = var.acl
force_destroy = var.force_destroy
policy = var.policy
region = var.region
tags = var.tags

dynamic cors_rule {
Expand Down
6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ variable "object_lock_days" {
description = "The number of days that you want to specify for the default retention period"
}

variable "region" {
type = string
default = null
description = "The region this bucket should reside in, defaults to the region used by the callee"
}

variable "replication_configuration" {
type = object({
iam_role_arn = string
Expand Down