back
terraform {
required_providers {
google-beta = ">= 3.63.0"
}
}
top
module "google_folder_iam_policy" {
source = "./modules/google-beta/r/google_folder_iam_policy"
# folder - (required) is a type of string
folder = null
# policy_data - (required) is a type of string
policy_data = null
}
top
variable "folder" {
description = "(required)"
type = string
}
variable "policy_data" {
description = "(required)"
type = string
}
top
resource "google_folder_iam_policy" "this" {
# folder - (required) is a type of string
folder = var.folder
# policy_data - (required) is a type of string
policy_data = var.policy_data
}
top
output "etag" {
description = "returns a string"
value = google_folder_iam_policy.this.etag
}
output "id" {
description = "returns a string"
value = google_folder_iam_policy.this.id
}
output "this" {
value = google_folder_iam_policy.this
}
top