Hello,
I have integrated my Terraform project with sonarqube.
Actually I tested a standard rule such as :
resource “aws_s3_bucket” “mynoncompliantbucket” { # Sensitive
bucket = “mynoncompliantbucketname”
acl = “public-read-write”
}
It worked very well. I would like as the next step to create my own custom rule for terraform analysis. Is it possible via adding plugin etc?
A quick look at the documentation suggested that adding custom rules to terraform is not supported.
Thank you