Logging sinks and exclusions (#178)

* Add sink support to folder module

* Make folder creation optional.

* Add logging sinks to the organization module

* Add logging sink support to project module

* Update readme
This commit is contained in:
Julio Castillo
2020-12-05 08:31:35 +01:00
committed by GitHub
parent 830216ac9b
commit 2c0f949f07
13 changed files with 470 additions and 12 deletions

View File

@@ -42,3 +42,10 @@ output "firewall_policy_id" {
name => google_compute_organization_security_policy.policy[name].id
}
}
output "sink_writer_identities" {
description = ""
value = {
for name, sink in google_logging_organization_sink.sink : name => sink.writer_identity
}
}