The description of a dynamic collection of monitored resources. Each group has a filter that is matched against monitored resources and their associated metadata. If a group's filter matches an available monitored resource, then that resource is a member of that group.
To get more information about Group, see:
resource "google_monitoring_group" "basic" {
display_name = "tf-test MonitoringGroup"
filter = "resource.metadata.region=\"europe-west2\""
}
resource "google_monitoring_group" "parent" {
display_name = "tf-test MonitoringParentGroup"
filter = "resource.metadata.region=\"europe-west2\""
}
resource "google_monitoring_group" "subgroup" {
display_name = "tf-test MonitoringSubGroup"
filter = "resource.metadata.region=\"europe-west2\""
parent_name = google_monitoring_group.parent.name
}
The following arguments are supported:
display_name
-
(Required)
A user-assigned name for this group, used only for display
purposes.
filter
-
(Required)
The filter used to determine which monitored resources
belong to this group.
parent_name
-
(Optional)
The name of the group's parent, if it has one. The format is
"projects/{project_id_or_number}/groups/{group_id}". For
groups with no parent, parentName is the empty string, "".
is_cluster
-
(Optional)
If true, the members of this group are considered to be a
cluster. The system can perform additional analysis on
groups that are clusters.
project
- (Optional) The ID of the project in which the resource belongs.
If it is not provided, the provider project is used.
In addition to the arguments listed above, the following computed attributes are exported:
id
- an identifier for the resource with format {{name}}
name
-
A unique identifier for this group. The format is
"projects/{project_id_or_number}/groups/{group_id}".
This resource provides the following Timeouts configuration options:
create
- Default is 20 minutes.update
- Default is 20 minutes.delete
- Default is 20 minutes.Group can be imported using any of these accepted formats:
{{name}}
In Terraform v1.5.0 and later, use an import
block to import Group using one of the formats above. For example:
import {
id = "{{name}}"
to = google_monitoring_group.default
}
When using the terraform import
command, Group can be imported using one of the formats above. For example:
$ terraform import google_monitoring_group.default {{name}}
This resource supports User Project Overrides.