You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"lacework_integration_gcp_cfg" {
source="./modules/lacework/r/lacework_integration_gcp_cfg"# enabled - (optional) is a type of boolenabled=null# name - (required) is a type of stringname=null# resource_id - (required) is a type of stringresource_id=null# resource_level - (optional) is a type of stringresource_level=null# retries - (optional) is a type of numberretries=nullcredentials=[{
client_email =null
client_id =null
private_key =null
private_key_id =null
}]
}
resource"lacework_integration_gcp_cfg""this" {
# enabled - (optional) is a type of boolenabled=var.enabled# name - (required) is a type of stringname=var.name# resource_id - (required) is a type of stringresource_id=var.resource_id# resource_level - (optional) is a type of stringresource_level=var.resource_level# retries - (optional) is a type of numberretries=var.retriesdynamic"credentials" {
for_each=var.credentialscontent {
# client_email - (required) is a type of stringclient_email=credentials.value["client_email"]
# client_id - (required) is a type of stringclient_id=credentials.value["client_id"]
# private_key - (required) is a type of stringprivate_key=credentials.value["private_key"]
# private_key_id - (required) is a type of stringprivate_key_id=credentials.value["private_key_id"]
}
}
}