Skip to content

Commit 071cd17

Browse files
committed
fix tflint errors
1 parent 2f87039 commit 071cd17

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Allows the creation of EC2 Image Builder Pipelines with Cloudformation until nat
4949
| log\_bucket | Bucket to store logs in. If this is ommited logs will not be stored | `string` | `null` | no |
5050
| log\_prefix | S3 prefix to store logs at. Recommended if sharing bucket with other pipelines | `string` | `null` | no |
5151
| public | Whether resulting AMI should be public | `bool` | `false` | no |
52-
| regions | n/a | `list` | <pre>[<br> "us-east-1",<br> "us-east-2",<br> "us-west-1",<br> "us-west-2",<br> "ca-central-1"<br>]</pre> | no |
52+
| regions | Regions that AMIs will be available in | `list(string)` | <pre>[<br> "us-east-1",<br> "us-east-2",<br> "us-west-1",<br> "us-west-2",<br> "ca-central-1"<br>]</pre> | no |
5353
| schedule | Schedule expression for when pipeline should run automatically https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html | <pre>object({<br> PipelineExecutionStartCondition = string<br> ScheduleExpression = string<br> })</pre> | <pre>{<br> "PipelineExecutionStartCondition": "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",<br> "ScheduleExpression": "cron(0 0 * * mon)"<br>}</pre> | no |
5454
| security\_group\_ids | Security group IDs for the Image Builder | `list(string)` | `null` | no |
5555
| shared\_account\_ids | AWS accounts to share AMIs with. If this is left null AMIs will be public | `list(string)` | `[]` | no |
@@ -63,7 +63,7 @@ Allows the creation of EC2 Image Builder Pipelines with Cloudformation until nat
6363

6464
| Name | Description |
6565
|------|-------------|
66-
| pipeline\_arn | n/a |
66+
| pipeline\_arn | ARN of EC2 Image Builder Pipeline |
6767

6868
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
6969

outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
output "pipeline_arn" {
2-
value = aws_cloudformation_stack.this.outputs["PipelineArn"]
2+
description = "ARN of EC2 Image Builder Pipeline"
3+
value = aws_cloudformation_stack.this.outputs["PipelineArn"]
34
}

variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ variable "regions" {
7676
"us-west-2",
7777
"ca-central-1"
7878
]
79+
description = "Regions that AMIs will be available in"
80+
type = list(string)
7981
}
8082

8183
variable "schedule" {

0 commit comments

Comments
 (0)