Skip to content

Instantly share code, notes, and snippets.

@rssnyder
Created August 4, 2023 17:32
Show Gist options
  • Save rssnyder/1ec4f02bd8cd99b5f59d6d23735df3c2 to your computer and use it in GitHub Desktop.
Save rssnyder/1ec4f02bd8cd99b5f59d6d23735df3c2 to your computer and use it in GitHub Desktop.
harness ccm terraform for azure cost connectors
resource "harness_platform_connector_azure_cloud_cost" "billing" {
identifier = "billing"
name = "billing"
features_enabled = ["BILLING", "VISIBILITY", "OPTIMIZATION"]
tenant_id = "b229b2bb-5f33-4d22-bce0-730f6474e906"
subscription_id = "e8389fc5-0cb8-44ab-947b-c6cf62552be0"
billing_export_spec {
storage_account_name = "harnesscostexport"
container_name = "harness"
directory_name = "export"
report_name = "harnesscostexport"
subscription_id = "e8389fc5-0cb8-44ab-947b-c6cf62552be0"
}
}
resource "harness_platform_connector_azure_cloud_cost" "app1" {
identifier = "app1"
name = "app1"
features_enabled = ["VISIBILITY", "OPTIMIZATION"]
tenant_id = "b229b2bb-5f33-4d22-bce0-730f6474e906"
subscription_id = "e8389fc5-0cb8-44ab-947b-c6cf62552be1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment