github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/rules/cloud/policies/aws/elb/alb_not_public.tf.go (about) 1 package elb 2 3 var terraformAlbNotPublicGoodExamples = []string{ 4 ` 5 resource "aws_alb" "good_example" { 6 internal = true 7 } 8 `, 9 } 10 11 var terraformAlbNotPublicBadExamples = []string{ 12 ` 13 resource "aws_alb" "bad_example" { 14 internal = false 15 } 16 `, 17 } 18 19 var terraformAlbNotPublicLinks = []string{ 20 `https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb`, 21 } 22 23 var terraformAlbNotPublicRemediationMarkdown = ``