-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.tf
24 lines (20 loc) · 884 Bytes
/
provider.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
########################################################################################################################
# Terraform providers
########################################################################################################################
provider "ibm" {
ibmcloud_api_key = var.ibmcloud_api_key
region = var.region
}
locals {
at_endpoint = "https://api.${var.region}.logging.cloud.ibm.com"
}
provider "logdna" {
alias = "at"
servicekey = module.observability_instances.activity_tracker_resource_key != null ? module.observability_instances.activity_tracker_resource_key : ""
url = local.at_endpoint
}
provider "logdna" {
alias = "ld"
servicekey = module.observability_instances.log_analysis_resource_key != null ? module.observability_instances.log_analysis_resource_key : ""
url = local.at_endpoint
}