Skip to content

Commit af15df2

Browse files
committed
update module
1 parent 337bac9 commit af15df2

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

examples/github-complete/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ Note that this example may create resources which cost money. Run `terraform des
3737
|------|--------|---------|
3838
| <a name="module_atlantis"></a> [atlantis](#module\_atlantis) | ../../ | n/a |
3939
| <a name="module_github_repository_webhooks"></a> [github\_repository\_webhooks](#module\_github\_repository\_webhooks) | ../../modules/github-repository-webhook | n/a |
40-
| <a name="module_secrets_manager"></a> [secrets\_manager](#module\_secrets\_manager) | terraform-aws-modules/secrets-manager/aws | ~> 1.0 |
41-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
40+
| <a name="module_secrets_manager"></a> [secrets\_manager](#module\_secrets\_manager) | terraform-aws-modules/secrets-manager/aws | 1.3.1 |
41+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 6.0.1 |
4242

4343
## Resources
4444

examples/github-complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ resource "random_password" "webhook_secret" {
125125

126126
module "secrets_manager" {
127127
source = "terraform-aws-modules/secrets-manager/aws"
128-
version = "~> 1.0"
128+
version = "1.3.1"
129129

130130
for_each = {
131131
github-token = {
@@ -146,7 +146,7 @@ module "secrets_manager" {
146146

147147
module "vpc" {
148148
source = "terraform-aws-modules/vpc/aws"
149-
version = "~> 5.0"
149+
version = "6.0.1"
150150

151151
name = local.name
152152
cidr = local.vpc_cidr

examples/github-separate/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ Note that this example may create resources which cost money. Run `terraform des
3838
| <a name="module_alb"></a> [alb](#module\_alb) | terraform-aws-modules/alb/aws | 9.17.0 |
3939
| <a name="module_atlantis"></a> [atlantis](#module\_atlantis) | ../../ | n/a |
4040
| <a name="module_atlantis_disabled"></a> [atlantis\_disabled](#module\_atlantis\_disabled) | ../../ | n/a |
41-
| <a name="module_ecs_cluster"></a> [ecs\_cluster](#module\_ecs\_cluster) | terraform-aws-modules/ecs/aws//modules/cluster | 5.6.0 |
41+
| <a name="module_ecs_cluster"></a> [ecs\_cluster](#module\_ecs\_cluster) | terraform-aws-modules/ecs/aws//modules/cluster | 6.1.1 |
4242
| <a name="module_github_repository_webhooks"></a> [github\_repository\_webhooks](#module\_github\_repository\_webhooks) | ../../modules/github-repository-webhook | n/a |
43-
| <a name="module_secrets_manager"></a> [secrets\_manager](#module\_secrets\_manager) | terraform-aws-modules/secrets-manager/aws | ~> 1.0 |
44-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
43+
| <a name="module_secrets_manager"></a> [secrets\_manager](#module\_secrets\_manager) | terraform-aws-modules/secrets-manager/aws | 1.3.1 |
44+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 6.0.1 |
4545

4646
## Resources
4747

examples/github-separate/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ module "ecs_cluster" {
109109

110110
# Cluster
111111
name = local.name
112-
setting = {
112+
setting = [{
113113
name = "containerInsights"
114114
value = "enabled"
115-
}
115+
}]
116116

117117
tags = local.tags
118118
}
@@ -192,7 +192,7 @@ resource "random_password" "webhook_secret" {
192192

193193
module "secrets_manager" {
194194
source = "terraform-aws-modules/secrets-manager/aws"
195-
version = "~> 1.0"
195+
version = "1.3.1"
196196

197197
for_each = {
198198
github-token = {
@@ -213,7 +213,7 @@ module "secrets_manager" {
213213

214214
module "vpc" {
215215
source = "terraform-aws-modules/vpc/aws"
216-
version = "~> 5.0"
216+
version = "6.0.1"
217217

218218
name = local.name
219219
cidr = local.vpc_cidr

0 commit comments

Comments
 (0)