50 lines
1.8 KiB
HCL
50 lines
1.8 KiB
HCL
/**
|
|
* Copyright 2022 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 {
|
|
cloud_config = templatefile(local.template, merge(var.config_variables, {
|
|
bindplane_prometheus_image = var.bindplane_config.bindplane_prometheus_image
|
|
bindplane_server_image = var.bindplane_config.bindplane_server_image
|
|
bindplane_transform_agent_image = var.bindplane_config.bindplane_transform_agent_image
|
|
files = local.files
|
|
password = var.password
|
|
license = var.bindplane_license
|
|
remote_url = var.bindplane_config.remote_url
|
|
runcmd_pre = var.runcmd_pre
|
|
runcmd_post = var.runcmd_post
|
|
users = var.users
|
|
uuid = random_uuid.uuid_secret.result
|
|
}))
|
|
files = {
|
|
for path, attrs in var.files : path => {
|
|
content = attrs.content,
|
|
owner = attrs.owner == null ? var.file_defaults.owner : attrs.owner,
|
|
permissions = (
|
|
attrs.permissions == null
|
|
? var.file_defaults.permissions
|
|
: attrs.permissions
|
|
)
|
|
}
|
|
}
|
|
template = (
|
|
var.cloud_config == null
|
|
? "${path.module}/cloud-config.yaml"
|
|
: var.cloud_config
|
|
)
|
|
}
|
|
|
|
resource "random_uuid" "uuid_secret" {}
|