Files
hunfabric/tests/modules/organization/context.tfvars
Julio Castillo d9e1b924a1 Add asset_feeds to resman modules (#3658)
* Add asset_feeds to resman modules

* Add examples and update readmes

* Extend pubsub_topic context to project and folder modules

* Use pubsub_topic context for pubsub_destination

* Update readmes and add project-factory asset_feed example

* Update context tests

* Update schemas
2026-01-20 14:37:35 +00:00

202 lines
4.6 KiB
HCL

context = {
bigquery_datasets = {
test = "projects/test-prod-audit-logs-0/datasets/logs"
}
condition_vars = {
organization = {
id = 1234567890
}
}
custom_roles = {
myrole_one = "organizations/366118655033/roles/myRoleOne"
myrole_two = "organizations/366118655033/roles/myRoleTwo"
}
email_addresses = {
default = "foo@example.com"
}
iam_principals = {
mygroup = "group:test-group@example.com"
mysa = "serviceAccount:test@test-project.iam.gserviceaccount.com"
myuser = "user:test-user@example.com"
}
locations = {
default = "europe-west8"
}
log_buckets = {
test = "projects/test-prod-audit-logs-0/locations/europe-west8/buckets/audit-logs"
}
project_ids = {
test = "test-prod-audit-logs-0"
}
pubsub_topics = {
test = "projects/test-prod-audit-logs-0/topics/audit-logs"
}
storage_buckets = {
test = "test-prod-logs-audit-0"
}
tag_keys = {
test = "tagKeys/1234567890"
}
tag_values = {
"test/one" = "tagValues/1234567890"
}
}
asset_feeds = {
test = {
billing_project = "test-project"
feed_output_config = {
pubsub_destination = {
topic = "$pubsub_topics:test"
}
}
}
}
contacts = {
"$email_addresses:default" = ["ALL"]
}
iam = {
"$custom_roles:myrole_one" = [
"$iam_principals:myuser"
]
"roles/viewer" = [
"$iam_principals:mysa",
"$iam_principalsets:service_accounts/all"
]
}
iam_by_principals = {
"$iam_principals:mygroup" = [
"roles/owner",
"$custom_roles:myrole_one"
]
}
iam_by_principals_conditional = {
"$iam_principals:myuser" = {
roles = [
"roles/storage.admin",
"$custom_roles:myrole_one",
"$custom_roles:myrole_two"
]
condition = {
title = "expires_after_2020_12_31"
description = "Expiring at midnight of 2020-12-31"
expression = "request.time < timestamp(\"2021-01-01T00:00:00Z\")"
}
}
}
iam_bindings = {
myrole_two = {
role = "$custom_roles:myrole_two"
members = [
"$iam_principals:mysa"
]
condition = {
title = "Test"
expression = "resource.matchTag('$${organization.id}/environment', 'development')"
}
}
}
iam_bindings_additive = {
myrole_two = {
role = "$custom_roles:myrole_two"
member = "$iam_principals:myuser"
}
}
logging_data_access = {
allServices = {
ADMIN_READ = {
exempted_members = ["$iam_principals:mygroup"]
}
DATA_READ = {}
}
}
logging_sinks = {
test-bq = {
destination = "$bigquery_datasets:test"
filter = "log_id('cloudaudit.googleapis.com/activity')"
type = "bigquery"
}
test-logging = {
destination = "$log_buckets:test"
filter = "log_id('cloudaudit.googleapis.com/activity')"
type = "logging"
}
test-project = {
destination = "$project_ids:test"
filter = "log_id('cloudaudit.googleapis.com/activity')"
type = "project"
}
test-pubsub = {
destination = "$pubsub_topics:test"
filter = "log_id('cloudaudit.googleapis.com/activity')"
type = "pubsub"
}
test-storage = {
destination = "$storage_buckets:test"
filter = "log_id('cloudaudit.googleapis.com/activity')"
type = "storage"
}
}
logging_settings = {
storage_location = "$locations:default"
}
pam_entitlements = {
net-admins = {
max_request_duration = "3600s"
manual_approvals = {
require_approver_justification = true
steps = [{
approvers = ["$iam_principals:mygroup"]
}]
}
eligible_users = ["$iam_principals:mygroup"]
privileged_access = [
{ role = "roles/compute.networkAdmin" },
{ role = "roles/compute.admin" },
{ role = "$custom_roles:myrole_two" }
]
}
}
tag_bindings = {
foo = "$tag_values:test/one"
}
tags = {
test = {
id = "$tag_keys:test"
iam = {
"roles/tagAdmin" = ["$iam_principals:mygroup"]
}
iam_bindings = {
tag_user = {
role = "roles/tagUser"
members = ["$iam_principals:myuser"]
}
}
iam_bindings_additive = {
tag_viewer = {
role = "roles/tagViewer"
member = "$iam_principals:mysa"
}
}
values = {
one = {
id = "$tag_values:test/one"
iam = {
"roles/tagAdmin" = ["$iam_principals:mygroup"]
}
iam_bindings = {
tag_user = {
role = "roles/tagUser"
members = ["$iam_principals:myuser"]
}
}
iam_bindings_additive = {
tag_viewer = {
role = "roles/tagViewer"
member = "$iam_principals:mysa"
}
}
}
}
}
}