Skip to content
This repository was archived by the owner on Jul 28, 2024. It is now read-only.

Commit d34755e

Browse files
committed
added s3 bucket for tf12 and tf13
1 parent 0d2432d commit d34755e

File tree

6 files changed

+29
-1
lines changed

6 files changed

+29
-1
lines changed
File renamed without changes.

aws/s3-bucket/s3.tf aws/s3-bucket/s3/s3.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ POLICY
3737
resource "aws_s3_bucket_object" "object" {
3838
bucket = "${aws_s3_bucket.website_bucket.bucket}"
3939
key = "index.html"
40-
source = "index.html"
40+
source = "../index.html"
4141
content_type = "text/html"
4242
}

aws/s3-bucket/main.tf aws/s3-bucket/tf-11/main.tf

+4
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ provider "aws" {
66
terraform {
77
required_version = "0.11.14"
88
}
9+
10+
module "s3" {
11+
source = "../s3/"
12+
}

aws/s3-bucket/tf-12/main.tf

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
provider "aws" {
2+
version = "~> 2.0"
3+
region = "us-east-1"
4+
}
5+
6+
terraform {
7+
required_version = "0.12.29"
8+
}
9+
10+
module "s3" {
11+
source = "../s3/"
12+
}

aws/s3-bucket/tf-13/main.tf

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
provider "aws" {
2+
version = "~> 2.0"
3+
region = "us-east-1"
4+
}
5+
6+
terraform {
7+
required_version = "0.13.3"
8+
}
9+
10+
module "s3" {
11+
source = "../s3/"
12+
}

ibm/bare-metal/main.tf

Whitespace-only changes.

0 commit comments

Comments
 (0)