Skip to content

Commit

Permalink
Add test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
minamijoyo committed Feb 15, 2022
1 parent 1131876 commit 2b88aca
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test-fixtures/awsv4upgrade/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.0.0"
}
}
}

provider "aws" {
region = "ap-northeast-1"
}

resource "aws_s3_bucket" "example" {
bucket = "minamijoyo-tf-aws-v4-test1"
acl = "private"

logging {
target_bucket = "minamijoyo-tf-aws-v4-test1-log"
target_prefix = "log/"
}
}

0 comments on commit 2b88aca

Please sign in to comment.