cloud-foundation-fabric/blueprints/cloud-operations/asset-inventory-feed-remedi...
simonebruzzechesse d11c380aec
Format python files in blueprints (#2079)
* format python files in blueprints
* update check on blueprints python code
* update python linter in CI workflow
2024-02-15 09:37:49 +01:00
..
cf Format python files in blueprints (#2079) 2024-02-15 09:37:49 +01:00
README.md Fix modules and blueprints tests 2023-05-26 16:38:41 +02:00
backend.tf.sample versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
cloud-shell-readme.txt Rename examples folder to blueprints 2022-09-09 16:38:43 +02:00
diagram.png Rename examples folder to blueprints 2022-09-09 16:38:43 +02:00
main.tf Remove default region for Cloud Function and Cloud Run (#2004) 2024-01-24 10:23:40 +00:00
outputs.tf Rename examples folder to blueprints 2022-09-09 16:38:43 +02:00
variables.tf Rename examples folder to blueprints 2022-09-09 16:38:43 +02:00

README.md

Cloud Asset Inventory feeds for resource change tracking and remediation

This blueprint shows how to leverage Cloud Asset Inventory feeds to stream resource changes in real time, and how to programmatically react to changes by wiring a Cloud Function to the feed outputs.

The Cloud Function can then be used for different purposes:

  • updating remote data (eg a CMDB) to reflect the changed resources
  • triggering alerts to surface critical changes
  • adapting the configuration of separate related resources
  • implementing remediation steps that enforce policy compliance by tweaking or reverting the changes.

A companion Medium article has been published for this blueprint, refer to it for more details on the context and the specifics of running the blueprint.

This blueprint shows a simple remediation use case: how to enforce policies on instance tags and revert non-compliant changes in near-real time, thus adding an additional measure of control when using tags for firewall rule scoping. Changing the monitored asset and the function logic allows simple adaptation to other common use cases:

  • enforcing a centrally defined Cloud Armor policy in backend services
  • creating custom DNS records for instances or forwarding rules

The blueprint uses a single project for ease of testing, in actual use a few changes are needed to operate at the resource hierarchy level:

  • the feed should be set at the folder or organization level
  • the custom role used to assign tag changing permissions should be defined at the organization level
  • the role binding that grants the custom role to the Cloud Function service account should be set at the same level as the feed (folder or organization)

The resources created in this blueprint are shown in the high level diagram below:

Running the blueprint

Clone this repository or open it in cloud shell, then go through the following steps to create resources:

  • terraform init
  • terraform apply -var project_id=my-project-id

Once done testing, you can clean up resources by running terraform destroy. To persist state, check out the backend.tf.sample file.

Testing the blueprint

The terraform outputs generate preset gcloud commands that you can copy and run in the console, to complete configuration and test the blueprint:

  • subscription_pull shows messages in the PubSub queue, to check feed message format if the Cloud Function is disabled
  • cf_logs shows Cloud Function logs to check that remediation works
  • tag_add adds a non-compliant tag to the test instance, and triggers the Cloud Function remediation process
  • tag_show displays the tags currently set on the test instance

Run the subscription_pull command until it returns nothing, then run the following commands in order to test remediation:

  • the tag_add command
  • the cf_logs command until the logs show that the change has been picked up, verified, and the compliant tags have been force-set on the instance
  • the tag_show command to verify that the function output matches the resource state

Variables

name description type required default
project_id Project id that references existing project. string
bundle_path Path used to write the intermediate Cloud Function code bundle. string "./bundle.zip"
name Arbitrary string used to name created resources. string "asset-feed"
project_create Create project instead of using an existing one. bool false
region Compute region used in the example. string "europe-west1"

Outputs

name description sensitive
cf_logs Cloud Function logs read command.
subscription_pull Subscription pull command.
tag_add Instance add tag command.
tag_show Instance add tag command.

Test

module "test" {
  source         = "./fabric/blueprints/cloud-operations/asset-inventory-feed-remediation"
  project_create = true
  project_id     = "project-1"
}

# tftest modules=7 resources=23