joplin-s3-bucket

DustinAlandzes/joplin-s3-bucket/aws

Terraform Module HCL AWS

Terraform module that creates an S3 bucket used to sync notes from Joplin.

Install
module "joplin-s3-bucket" {
source = "DustinAlandzes/joplin-s3-bucket/aws"
version = "0.1.0"
}
plain text: /constructs/tfmod-dustinalandzes-joplin-s3-bucket-aws/install.txt
⭐ Source on GitHub 📦 Registry page
README

Joplin S3 Bucket Terraform Module This is a repository for a Terraform module that creates an AWS S3 bucket, along with an IAM user that only has access to that bucket. It will output the bucket, access key and secret you need to add to Joplin. Terraform Registry usage Copy and paste into your Terraform configuration, and run terraform init: ``hcl module "joplin-s3-bucket" { source = "DustinAlandzes/joplin-s3-bucket/aws" version = "0.1.0" } ` To get outputs, you can modify your outputs.tf to look like this: `hcl output "joplin_s3_bucket" { value = module.joplin-s3-bucket.joplin_s3_bucket description = "The S3 bucket's name" } output "joplin_aws_key" { value = module.joplin-s3-bucket.joplin_aws_key description = "AWS key in Joplin" } output "joplin_aws_secret" { value = module.joplin-s3-buc

Outputs (3)
joplin_s3_bucket — The S3 bucket's name
joplin_aws_key — AWS key in Joplin
joplin_aws_secret — AWS secret in Joplin
Resources (4)
aws_iam_access_keyaws_iam_useraws_iam_user_policyaws_s3_bucket
Details
FrameworkTerraform Module
LanguageHCL
Version0.1.0
Cloud AWS
★ Stars1
Forks1
Total downloads5.0k
Outputs3
Resources4
NamespaceDustinAlandzes
Updated