Skip to content

Instantly share code, notes, and snippets.

View matthewhembree's full-sized avatar
😀

Matthew Hembree matthewhembree

😀
View GitHub Profile
@kharandziuk
kharandziuk / terraform-presigned-url.tf
Created June 25, 2020 11:50
A hack to generate a presigned url in terraform
variable "bucket_name" {
default = "max-bucket-for-testing"
}
provider "aws" {
region = var.aws_region
profile = var.aws_profile
}
resource "aws_s3_bucket" "artifacts" {