55 lines
1.5 KiB
HCL
55 lines
1.5 KiB
HCL
# Copyright 2025 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.
|
|
|
|
data_defaults = {
|
|
billing_account = "1245-5678-9012"
|
|
storage_location = "EU"
|
|
}
|
|
# make sure the environment label and stackdriver service are always added
|
|
data_merges = {
|
|
labels = {
|
|
environment = "test"
|
|
}
|
|
services = [
|
|
"stackdriver.googleapis.com"
|
|
]
|
|
}
|
|
# always use this contacts and prefix, regardless of what is in the yaml file
|
|
data_overrides = {
|
|
contacts = {
|
|
"admin@example.org" = ["ALL"]
|
|
}
|
|
prefix = "test-pf"
|
|
}
|
|
# location where the yaml files are read from
|
|
factories_config = {
|
|
folders_data_path = "bucket_iam/hierarchy"
|
|
projects_data_path = "bucket_iam/projects"
|
|
context = {
|
|
folder_ids = {
|
|
default = "folders/5678901234"
|
|
teams = "folders/5678901234"
|
|
}
|
|
iam_principals = {
|
|
gcp-devops = "group:gcp-devops@example.org"
|
|
}
|
|
tag_values = {
|
|
"org-policies/drs-allow-all" = "tagValues/123456"
|
|
}
|
|
vpc_host_projects = {
|
|
dev-spoke-0 = "test-pf-dev-net-spoke-0"
|
|
}
|
|
}
|
|
}
|