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_aws_cfg" {
source="./modules/lacework/r/lacework_integration_aws_cfg"# enabled - (optional) is a type of boolenabled=null# name - (required) is a type of stringname=null# retries - (optional) is a type of numberretries=nullcredentials=[{
external_id =null
role_arn =null
}]
}
resource"lacework_integration_aws_cfg""this" {
# enabled - (optional) is a type of boolenabled=var.enabled# name - (required) is a type of stringname=var.name# retries - (optional) is a type of numberretries=var.retriesdynamic"credentials" {
for_each=var.credentialscontent {
# external_id - (required) is a type of stringexternal_id=credentials.value["external_id"]
# role_arn - (required) is a type of stringrole_arn=credentials.value["role_arn"]
}
}
}