We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fda4e01 commit cee8f83Copy full SHA for cee8f83
modules/services/cloud-bench/trust_relationship/main.tf
@@ -20,13 +20,10 @@ locals {
20
21
resource "sysdig_secure_cloud_account" "cloud_account" {
22
account_id = data.google_project.project.number
23
+ alias = data.google_project.project.project_id
24
cloud_provider = "gcp"
25
role_enabled = "true"
26
role_name = var.role_name
-
27
- # Required as datasource prefixes id with '/projects/':
28
- # https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/google_project#id
29
- alias = trimprefix(data.google_project.project.id, "projects/")
30
}
31
32
###################################################
0 commit comments