Skip to content

Commit 8f0e47e

Browse files
committed
feat: add initial Terraform configuration for S3 bucket object example
1 parent db9c28a commit 8f0e47e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/terraform-module-releaser.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
id: release
2222
with:
2323
use-ssh-source-format: true
24+
module-path-ignore: aws/s3-bucket-object/examples/
2425

2526
- id: debug
2627
name: Debug

aws/s3-bucket-object/examples/main.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = "~> 3.0"
6+
}
7+
}
8+
9+
required_version = ">= 0.12"
10+
}
11+

0 commit comments

Comments
 (0)