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_alert_channel_aws_s3" {
source="./modules/lacework/r/lacework_alert_channel_aws_s3"# bucket_arn - (required) is a type of stringbucket_arn=null# enabled - (optional) is a type of boolenabled=null# name - (required) is a type of stringname=nullcredentials=[{
external_id =null
role_arn =null
}]
}
resource"lacework_alert_channel_aws_s3""this" {
# bucket_arn - (required) is a type of stringbucket_arn=var.bucket_arn# enabled - (optional) is a type of boolenabled=var.enabled# name - (required) is a type of stringname=var.namedynamic"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"]
}
}
}