File tree Expand file tree Collapse file tree 6 files changed +59
-15
lines changed Expand file tree Collapse file tree 6 files changed +59
-15
lines changed Original file line number Diff line number Diff line change 1
1
# These are supported funding model platforms
2
2
3
- github : [ivankatliarchuk]
4
- patreon : # Replace with a single Patreon username
5
3
open_collective : # Replace with a single Open Collective username
6
4
ko_fi : # Replace with a single Ko-fi username
7
- tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
- community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
- liberapay : # Replace with a single Liberapay username
10
- issuehunt : # Replace with a single IssueHunt username
11
- otechie : # Replace with a single Otechie username
5
+ github : [ivankatliarchuk]
6
+ patreon : cloudkats
7
+ otechie : cloudkats
12
8
custom : https://paypal.me/ivankatliarchuk
9
+ liberapay : cloudkats
10
+ issuehunt : ivankatliarchuk
Original file line number Diff line number Diff line change 44
44
draft : false
45
45
prerelease : false
46
46
body : |
47
- Changes in this Release ${{ steps.register.outputs.changelog }}
47
+ Changes in this Release ${{ steps.register.outputs.release_timestamp }}
48
48
- ${{ steps.register.outputs.changelog }}
49
49
- Terraform Version: ${{ env.TERRAFORM_VERSION }}
Original file line number Diff line number Diff line change 21
21
hooks :
22
22
- id : terraform_fmt
23
23
- id : terraform_docs
24
- # - id: terraform_tflint
24
+ - id : terraform_tflint
25
25
- repo : git://github.com/smian/pre-commit-makefile
26
26
rev : 261f8fb4b31dfdc05d1a1d7fbde1f1462ecde66d
27
27
hooks :
Original file line number Diff line number Diff line change
1
+ config {
2
+ deep_check = false
3
+ ignore_module = {}
4
+ varfile = []
5
+ }
6
+
7
+ rule "terraform_documented_variables" {
8
+ enabled = true
9
+ }
10
+
11
+ rule "terraform_documented_outputs" {
12
+ enabled = true
13
+ }
14
+
15
+ rule "terraform_comment_syntax" {
16
+ enabled = true
17
+ }
18
+
19
+ rule "terraform_naming_convention" {
20
+ enabled = true
21
+ }
22
+
23
+ rule "terraform_deprecated_interpolation" {
24
+ enabled = true
25
+ }
26
+
27
+ rule "terraform_deprecated_index" {
28
+ enabled = true
29
+ }
30
+
31
+ rule "terraform_required_providers" {
32
+ enabled = true
33
+ }
34
+
35
+ rule "terraform_required_version" {
36
+ enabled = true
37
+ }
38
+
39
+ rule "terraform_typed_variables" {
40
+ enabled = true
41
+ }
42
+
43
+ rule "terraform_unused_declarations" {
44
+ enabled = true
45
+ }
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ module lambda {
96
96
| Name | Description |
97
97
| ------| -------------|
98
98
| arn | Lambda ARN |
99
- | cloudwatch\_ logs\_ arn | n/a |
99
+ | cloudwatch\_ logs\_ arn | cloudwatch logs AWS ARN |
100
100
| invoke\_ arn | ARN to invoke the lambda method |
101
101
| name | Lambda Name |
102
102
| version | Lambda Version |
Original file line number Diff line number Diff line change 1
1
output "arn" {
2
- value = aws_lambda_function. this . arn
3
2
description = " Lambda ARN"
3
+ value = aws_lambda_function. this . arn
4
4
}
5
5
6
6
output "version" {
7
- value = aws_lambda_function. this . version
8
7
description = " Lambda Version"
8
+ value = aws_lambda_function. this . version
9
9
}
10
10
11
11
output "name" {
12
- value = aws_lambda_function. this . function_name
13
12
description = " Lambda Name"
13
+ value = aws_lambda_function. this . function_name
14
14
}
15
15
16
16
output "invoke_arn" {
17
- value = aws_lambda_function. this . invoke_arn
18
17
description = " ARN to invoke the lambda method"
18
+ value = aws_lambda_function. this . invoke_arn
19
19
}
20
20
21
21
output "cloudwatch_logs_arn" {
22
- value = aws_cloudwatch_log_group. this . name
22
+ description = " cloudwatch logs AWS ARN"
23
+ value = aws_cloudwatch_log_group. this . name
23
24
}
24
25
You can’t perform that action at this time.
0 commit comments