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
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,12 @@ module "pipeline" {
73
73
terraform_version = "1.5.7"
74
74
checkov_version = "3.2.0"
75
75
tflint_version = "0.48.0"
76
+
77
+
vpc = {
78
+
vpc_id = "vpc-011a22334455bb66c",
79
+
subnets = ["subnet-011aabbcc2233d4ef"],
80
+
security_group_ids = ["sg-001abcd2233ee4455"],
81
+
}
76
82
77
83
tags = join(",", [
78
84
"Environment[Dev,Prod]",
@@ -109,6 +115,8 @@ module "pipeline" {
109
115
110
116
`tflint_version` controls the [tflint](https://github.com/terraform-linters/tflint) version. It defaults to 0.48.0.
111
117
118
+
`vpc` configures the CodeBuild projects to [run in a VPC](https://docs.aws.amazon.com/codebuild/latest/userguide/vpc-support.html).
119
+
112
120
`tags` enables tag validation with [tag-nag](https://github.com/jakebark/tag-nag). Input a list of tag keys and/or tag keys and values to enforce. Input must be passed as a string, see [commands](https://github.com/jakebark/tag-nag?tab=readme-ov-file#commands).
113
121
114
122
`tagnag_version` controls the [tag-nag](https://github.com/jakebark/tag-nag) version. It defaults to 0.5.8.
0 commit comments