You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"google_storage_bucket_object_content" {
source="./modules/google-beta/d/google_storage_bucket_object_content"# bucket - (required) is a type of stringbucket=null# content - (optional) is a type of stringcontent=null# name - (required) is a type of stringname=null
}
variable"bucket" {
description="(required) - The name of the containing bucket."type=string
}
variable"content" {
description="(optional) - Data as string to be uploaded. Must be defined if source is not. Note: The content field is marked as sensitive. To view the raw contents of the object, please define an output."type=stringdefault=null
}
variable"name" {
description="(required) - The name of the object. If you're interpolating the name of this object, see output_name instead."type=string
}
data"google_storage_bucket_object_content""this" {
# bucket - (required) is a type of stringbucket=var.bucket# content - (optional) is a type of stringcontent=var.content# name - (required) is a type of stringname=var.name
}