Enabling Legacy Authorization, Attribute-Based Access Control (ABAC), on Google Kubernetes Engine resources can reduce an organization’s ability to protect itself against access controls being compromised.
For Kubernetes, Attribute-Based Access Control has been superseded by Role-Based Access Control. ABAC is not under active development anymore and thus should be avoided.
There is a risk if you answered yes to any of those questions.
Unless you are relying on ABAC, leave it disabled.
resource "google_container_cluster" "example" {
enable_legacy_abac = true # Sensitive
}
resource "google_container_cluster" "example" {
enable_legacy_abac = false
}