Skip to content

Add support for Apigee Security Profile V2 #22367

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
kigesui opened this issue Apr 15, 2025 · 0 comments · May be fixed by GoogleCloudPlatform/magic-modules#13689
Open

Add support for Apigee Security Profile V2 #22367

kigesui opened this issue Apr 15, 2025 · 0 comments · May be fixed by GoogleCloudPlatform/magic-modules#13689
Labels
enhancement forward/review In review; remove label to forward service/apigee

Comments

@kigesui
Copy link

kigesui commented Apr 15, 2025

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
  • Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment.
  • If an issue is assigned to a user, that user is claiming responsibility for the issue.
  • Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.

Description

Add terraform support for Apigee Security Profile V2

New or Affected Resource(s)

  • google_apigee_security_profile_v2 (new)

Potential Terraform Configuration

resource "google_apigee_security_profile_v2" "security_profile_v2" {
  depends_on = [
    google_apigee_addons_config.apigee_org_security_addons_config
  ]
  profile_id  = "tf-test-profile"
  org_id      = google_apigee_organization.apigee_org.id
  description = "terraform test description"
  profile_assessment_configs {
    assessment = "auth-policies-check"
    weight = "MAJOR"
  }
  profile_assessment_configs {
    assessment = "mediation-policies-check"
    weight = "MODERATE"
  }
  profile_assessment_configs {
    assessment = "threat-policies-check"
    weight = "MINOR"
  }
}

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement forward/review In review; remove label to forward service/apigee
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant