File tree Expand file tree Collapse file tree 16 files changed +43
-34
lines changed
rds_enhanced_monitoring_forwarder Expand file tree Collapse file tree 16 files changed +43
-34
lines changed Original file line number Diff line number Diff line change 8
8
- ' **.tf'
9
9
- ' **.tmpl'
10
10
- ' !examples/**.tf'
11
- - ' .releaserc.json '
11
+ - ' .github/workflows/semantic-releaser.yml '
12
12
13
13
jobs :
14
14
release :
24
24
- name : Setup Node.js
25
25
uses : actions/setup-node@v2
26
26
with :
27
- node-version : 14
27
+ node-version : 16
28
28
29
29
- name : Release
30
+ uses : cycjimmy/semantic-release-action@v2
31
+ with :
32
+ semantic_version : 18.0.0
33
+ extra_plugins : |
34
+
30
35
env :
31
36
GITHUB_TOKEN : ${{ secrets.SEMANTIC_RELEASE }}
32
- run : npx semantic-release
Original file line number Diff line number Diff line change 3
3
" main"
4
4
],
5
5
"plugins" : [
6
- " @semantic-release/commit-analyzer" , {
7
- "preset" : " angular" ,
8
- "parserOpts" : {
9
- "noteKeywords" : [" BREAKING CHANGE" , " BREAKING CHANGES" ]
10
- }
11
- },
12
- " @semantic-release/release-notes-generator" ,
6
+ [
7
+ " @semantic-release/commit-analyzer" ,
8
+ {
9
+ "preset" : " conventionalcommits"
10
+ }
11
+ ],
12
+ [
13
+ " @semantic-release/release-notes-generator" ,
14
+ {
15
+ "preset" : " conventionalcommits"
16
+ }
17
+ ],
13
18
" @semantic-release/github"
14
19
]
15
20
}
Original file line number Diff line number Diff line change @@ -66,13 +66,13 @@ Examples codified under the [`examples`](./examples) are intended to give users
66
66
| Name | Version |
67
67
| ------| ---------|
68
68
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
69
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 3 .0 |
69
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 4 .0 |
70
70
71
71
## Providers
72
72
73
73
| Name | Version |
74
74
| ------| ---------|
75
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 3 .0 |
75
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 4 .0 |
76
76
77
77
## Modules
78
78
Original file line number Diff line number Diff line change @@ -24,23 +24,23 @@ Note that this example may create resources which will incur monetary charges on
24
24
| Name | Version |
25
25
| ------| ---------|
26
26
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
27
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 3 .0 |
27
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 4 .0 |
28
28
| <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 2.0 |
29
29
30
30
## Providers
31
31
32
32
| Name | Version |
33
33
| ------| ---------|
34
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 3 .0 |
34
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 4 .0 |
35
35
| <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 2.0 |
36
36
37
37
## Modules
38
38
39
39
| Name | Source | Version |
40
40
| ------| --------| ---------|
41
41
| <a name =" module_default " ></a > [ default] ( #module\_ default ) | ../../ | n/a |
42
- | <a name =" module_log_bucket_1 " ></a > [ log\_ bucket\_ 1] ( #module\_ log\_ bucket\_ 1 ) | terraform-aws-modules/s3-bucket/aws | ~ > 2 .0 |
43
- | <a name =" module_log_bucket_2 " ></a > [ log\_ bucket\_ 2] ( #module\_ log\_ bucket\_ 2 ) | terraform-aws-modules/s3-bucket/aws | ~ > 2 .0 |
42
+ | <a name =" module_log_bucket_1 " ></a > [ log\_ bucket\_ 1] ( #module\_ log\_ bucket\_ 1 ) | terraform-aws-modules/s3-bucket/aws | ~ > 3 .0 |
43
+ | <a name =" module_log_bucket_2 " ></a > [ log\_ bucket\_ 2] ( #module\_ log\_ bucket\_ 2 ) | terraform-aws-modules/s3-bucket/aws | ~ > 3 .0 |
44
44
| <a name =" module_security_group " ></a > [ security\_ group] ( #module\_ security\_ group ) | terraform-aws-modules/security-group/aws | ~ > 4.0 |
45
45
| <a name =" module_vpc " ></a > [ vpc] ( #module\_ vpc ) | terraform-aws-modules/vpc/aws | ~ > 3.0 |
46
46
| <a name =" module_vpc_endpoints " ></a > [ vpc\_ endpoints] ( #module\_ vpc\_ endpoints ) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | ~ > 3.0 |
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ module "security_group" {
146
146
147
147
module "log_bucket_1" {
148
148
source = " terraform-aws-modules/s3-bucket/aws"
149
- version = " ~> 2 .0"
149
+ version = " ~> 3 .0"
150
150
151
151
bucket = " logs-1-${ random_pet . this . id } "
152
152
force_destroy = true
@@ -173,7 +173,7 @@ module "log_bucket_1" {
173
173
174
174
module "log_bucket_2" {
175
175
source = " terraform-aws-modules/s3-bucket/aws"
176
- version = " ~> 2 .0"
176
+ version = " ~> 3 .0"
177
177
178
178
bucket = " logs-2-${ random_pet . this . id } "
179
179
force_destroy = true
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " ~> 3 .0"
7
+ version = " >= 4 .0"
8
8
}
9
9
random = {
10
10
source = " hashicorp/random"
Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ Note that this example may create resources which will incur monetary charges on
20
20
| Name | Version |
21
21
| ------| ---------|
22
22
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
23
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 3 .0 |
23
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 4 .0 |
24
24
| <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 2.0 |
25
25
26
26
## Providers
27
27
28
28
| Name | Version |
29
29
| ------| ---------|
30
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 3 .0 |
30
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 4 .0 |
31
31
| <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 2.0 |
32
32
33
33
## Modules
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " ~> 3 .0"
7
+ version = " >= 4 .0"
8
8
}
9
9
random = {
10
10
source = " hashicorp/random"
Original file line number Diff line number Diff line change @@ -42,21 +42,21 @@ module "datadog_log_forwarder" {
42
42
| Name | Version |
43
43
| ------| ---------|
44
44
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
45
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | ~ > 3 .0 |
45
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 4 .0 |
46
46
| <a name =" requirement_null " ></a > [ null] ( #requirement\_ null ) | >= 3.0 |
47
47
48
48
## Providers
49
49
50
50
| Name | Version |
51
51
| ------| ---------|
52
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | ~ > 3 .0 |
52
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 4 .0 |
53
53
| <a name =" provider_null " ></a > [ null] ( #provider\_ null ) | >= 3.0 |
54
54
55
55
## Modules
56
56
57
57
| Name | Source | Version |
58
58
| ------| --------| ---------|
59
- | <a name =" module_this_s3_bucket " ></a > [ this\_ s3\_ bucket] ( #module\_ this\_ s3\_ bucket ) | terraform-aws-modules/s3-bucket/aws | v2.14 .1 |
59
+ | <a name =" module_this_s3_bucket " ></a > [ this\_ s3\_ bucket] ( #module\_ this\_ s3\_ bucket ) | terraform-aws-modules/s3-bucket/aws | v3.0 .1 |
60
60
61
61
## Resources
62
62
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ data "aws_region" "current" {}
24
24
25
25
module "this_s3_bucket" {
26
26
source = " terraform-aws-modules/s3-bucket/aws"
27
- version = " v2.14 .1"
27
+ version = " v3.0 .1"
28
28
29
29
create_bucket = var. create && var. create_bucket
30
30
bucket = local. bucket_name
You can’t perform that action at this time.
0 commit comments