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_project_organization_policy" {
source="./modules/google-beta/d/google_project_organization_policy"# constraint - (required) is a type of stringconstraint=null# project - (required) is a type of stringproject=null
}
variable"constraint" {
description="(required) - The name of the Constraint the Policy is configuring, for example, serviceuser.services."type=string
}
variable"project" {
description="(required) - The project ID."type=string
}
data"google_project_organization_policy""this" {
# constraint - (required) is a type of stringconstraint=var.constraint# project - (required) is a type of stringproject=var.project
}
output"boolean_policy" {
description="returns a list of object"value=data.google_project_organization_policy.this.boolean_policy
}
output"etag" {
description="returns a string"value=data.google_project_organization_policy.this.etag
}
output"id" {
description="returns a string"value=data.google_project_organization_policy.this.id
}
output"list_policy" {
description="returns a list of object"value=data.google_project_organization_policy.this.list_policy
}
output"restore_policy" {
description="returns a list of object"value=data.google_project_organization_policy.this.restore_policy
}
output"update_time" {
description="returns a string"value=data.google_project_organization_policy.this.update_time
}
output"version" {
description="returns a number"value=data.google_project_organization_policy.this.version
}
output"this" {
value=google_project_organization_policy.this
}