67 lines
2.2 KiB
HCL
67 lines
2.2 KiB
HCL
/**
|
|
* Copyright 2026 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
locals {
|
|
_channels_factory_data_raw = merge([
|
|
for k in local.observability_factory_data_raw :
|
|
lookup(k, "notification_channels", {})
|
|
]...)
|
|
_channels_factory_data = {
|
|
for k, v in local._channels_factory_data_raw :
|
|
k => {
|
|
type = v.type
|
|
description = try(v.description, null)
|
|
display_name = try(v.display_name, null)
|
|
enabled = try(v.enabled, null)
|
|
labels = try(v.labels, null)
|
|
user_labels = try(v.user_labels, null)
|
|
sensitive_labels = !can(v.sensitive_labels) ? null : {
|
|
auth_token = try(v.sensitive_labels.auth_token, null)
|
|
password = try(v.sensitive_labels.password, null)
|
|
service_key = try(v.sensitive_labels.service_key, null)
|
|
}
|
|
}
|
|
}
|
|
channels = merge(local._channels_factory_data, var.notification_channels)
|
|
}
|
|
|
|
resource "google_monitoring_notification_channel" "channels" {
|
|
for_each = local.channels
|
|
project = local.project.project_id
|
|
type = each.value.type
|
|
description = each.value.description
|
|
display_name = each.value.display_name
|
|
enabled = each.value.enabled
|
|
labels = each.value.labels == null ? null : {
|
|
for k, v in each.value.labels :
|
|
# allow interpolation of email addresses and pubsub topics
|
|
k => try(
|
|
local.ctx.email_addresses[v],
|
|
local.ctx.pubsub_topics[v],
|
|
v
|
|
)
|
|
}
|
|
user_labels = each.value.user_labels
|
|
dynamic "sensitive_labels" {
|
|
for_each = each.value.sensitive_labels[*]
|
|
content {
|
|
auth_token = sensitive_labels.value.auth_token
|
|
password = sensitive_labels.value.password
|
|
service_key = sensitive_labels.value.service_key
|
|
}
|
|
}
|
|
}
|