-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Milestone
Description
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
This is to track request to add support for scopes in Reference List resource for Google SecOps. Currently the API do offer the chance to associate the reference list to a scope leveraging scope_info, but this is not implemented in the terraform resource. More information on the API here.
New or Affected Resource(s)
- google_chronicle_reference_list
Potential Terraform Configuration
resource "google_chronicle_reference_list" "example" {
location = "us"
instance = "00000000-0000-0000-0000-000000000000"
reference_list_id = "reference_list_id"
description = "referencelist-description"
entries {
value = "referencelist-entry-value"
}
syntax_type = "REFERENCE_LIST_SYNTAX_TYPE_PLAIN_TEXT_STRING"
scope_info = {
reference_list_scope = {
scope_names = [
"scope-1"
]
}
}
}References
https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/chronicle_reference_list
https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.referenceLists#ReferenceListScope
b/441076811