Skip to main content

reports_ia_cvalidation_report

Creates, updates, deletes, gets or lists a reports_ia_cvalidation_report resource.

Overview

Namereports_ia_cvalidation_report
TypeResource
Idgoogle.securityposture.reports_ia_cvalidation_report

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_ia_cvalidation_reportinsertorganizationsId, locationsIdValidates a specified infrastructure-as-code (IaC) configuration, and creates a Report with the validation results. Only Terraform configurations are supported. Only modified assets are validated.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
organizationsIdstring

INSERT examples

Validates a specified infrastructure-as-code (IaC) configuration, and creates a Report with the validation results. Only Terraform configurations are supported. Only modified assets are validated.

INSERT INTO google.securityposture.reports_ia_cvalidation_report (
data__iac,
organizationsId,
locationsId
)
SELECT
'{{ iac }}',
'{{ organizationsId }}',
'{{ locationsId }}'
RETURNING
name,
done,
error,
metadata,
response
;