hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.36k stars 1.75k forks source link

Create a new resource google_os_config_policy_Orchestrators #20344

Open imrannayer opened 1 week ago

imrannayer commented 1 week ago

Community Note

Description

Create a new resource for deploying os config policy Orchestrators https://cloud.google.com/compute/vm-manager/docs/os-policies/about-policy-orchestrator https://cloud.google.com/compute/vm-manager/docs/os-policies/use-policy-orchestrator

New or Affected Resource(s)

Potential Terraform Configuration

resource google_os_config_policy_Orchestrator {
  "name" = string,
  "description" = string,
  "state" = string,
  "orchestrationScope" = {},
  "action" = string,
  "orchestratedResource" = {},
  "labels" = {
    string = string,
  }  
}

References

https://cloud.google.com/compute/docs/osconfig/rest/v2beta/projects.locations.global.policyOrchestrators https://cloud.google.com/compute/vm-manager/docs/os-policies/about-policy-orchestrator https://cloud.google.com/compute/vm-manager/docs/os-policies/use-policy-orchestrator

b/379651995