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_organization_iam_policy" {
source="./modules/google-beta/r/google_organization_iam_policy"# org_id - (required) is a type of stringorg_id=null# policy_data - (required) is a type of stringpolicy_data=null
}
variable"org_id" {
description="(required) - The numeric ID of the organization in which you want to manage the audit logging config."type=string
}
variable"policy_data" {
description="(required)"type=string
}
resource"google_organization_iam_policy""this" {
# org_id - (required) is a type of stringorg_id=var.org_id# policy_data - (required) is a type of stringpolicy_data=var.policy_data
}