Skip to content

Commit 49ec848

Browse files
authored
chore: update providers (#19)
2 parents 0d1e366 + b608790 commit 49ec848

File tree

3 files changed

+52
-34
lines changed

3 files changed

+52
-34
lines changed

.terraform.lock.hcl

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dynamodb_outputs.tf

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1+
output "dynamodb_identification_svc_status_table" {
2+
description = "DynamoDB Identification Service Clients Table"
3+
value = {
4+
"arn" : aws_dynamodb_table.identification_svc_clients_table.arn,
5+
"id" : aws_dynamodb_table.identification_svc_clients_table.id,
6+
"name" : aws_dynamodb_table.identification_svc_clients_table.name,
7+
"tags" : aws_dynamodb_table.identification_svc_clients_table.tags,
8+
}
9+
}
110

11+
output "dynamodb_production_svc_status_table" {
12+
description = "DynamoDB Production Service Status Table"
13+
value = {
14+
"arn" : aws_dynamodb_table.production_svc_status_table.arn,
15+
"id" : aws_dynamodb_table.production_svc_status_table.id,
16+
"name" : aws_dynamodb_table.production_svc_status_table.name,
17+
"tags" : aws_dynamodb_table.production_svc_status_table.tags,
18+
}
19+
}

providers.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 0.12.26"
2+
required_version = ">= 1.7.5"
33

44
cloud {
55
organization = "soat-tech-challenge"
@@ -12,12 +12,12 @@ terraform {
1212
required_providers {
1313
aws = {
1414
source = "hashicorp/aws"
15-
version = "5.34.0"
15+
version = "~> 5.41"
1616
}
1717

1818
tfe = {
1919
source = "hashicorp/tfe"
20-
version = "~> 0.51.1"
20+
version = "~> 0.53.0"
2121
}
2222
}
2323
}

0 commit comments

Comments
 (0)