0
2
llucycodes42
This code creates a new Google Storage bucket, example-name, and stores an image file named "garden-tiger-moth.jpg" in the bucket.
Shortcut: tf_google_storage_bucket_object
resource "google_storage_bucket_object" "${MyResource}" {
name = "example-name"
bucket = "bucket-store"
source = "/images/nature/garden-tiger-moth.jpg"
}