File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
test/examples/project_api_enablement Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ This terraform file is intended to enable the GCP APIs needed for CDR/CIEM featu
33It will create a google_project_service resource per each service enabled within the GCP project.
44The APIs needed for the CDR/CIEM feature are listed below:
55 - Cloud Pub/Sub API
6+ - Cloud Logging API
67
78* Note: This do not overwrite any other APIs config that your GCP project has, it will only enabled it if isn't yet.
89*/
@@ -11,7 +12,8 @@ The APIs needed for the CDR/CIEM feature are listed below:
1112locals {
1213 project = " <MANAGEMENT_PROJECT_ID>"
1314 services = [
14- " pubsub.googleapis.com"
15+ " pubsub.googleapis.com" ,
16+ " logging.googleapis.com"
1517 ]
1618}
1719
Original file line number Diff line number Diff line change 22This terraform file is intended to enable the GCP APIs needed for CSPM feature within a single project onboarding.
33It will create a google_project_service resource per each service enabled within the GCP project.
44The APIs needed for the CSPM feature are listed below:
5- - Security Token Service API
65 - Cloud Asset API
7- - Cloud Identity API
86 - Admin SDK API
97In addition, since CSPM is needed for onboard any GCP project these other APIs are also enabled:
108 - Identity and access management API
@@ -19,9 +17,7 @@ locals {
1917 project = " <MANAGEMENT_PROJECT_ID>"
2018 services = [
2119 # CSPM specific APIs
22- " sts.googleapis.com" ,
2320 " cloudasset.googleapis.com" ,
24- " cloudidentity.googleapis.com" ,
2521 " admin.googleapis.com" ,
2622
2723 # additional APIs
You can’t perform that action at this time.
0 commit comments