Skip to content

Commit

Permalink
chore: update providers (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-otn authored Mar 26, 2024
2 parents 0d1e366 + b608790 commit 49ec848
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 34 deletions.
62 changes: 31 additions & 31 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions dynamodb_outputs.tf
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
output "dynamodb_identification_svc_status_table" {
description = "DynamoDB Identification Service Clients Table"
value = {
"arn" : aws_dynamodb_table.identification_svc_clients_table.arn,
"id" : aws_dynamodb_table.identification_svc_clients_table.id,
"name" : aws_dynamodb_table.identification_svc_clients_table.name,
"tags" : aws_dynamodb_table.identification_svc_clients_table.tags,
}
}

output "dynamodb_production_svc_status_table" {
description = "DynamoDB Production Service Status Table"
value = {
"arn" : aws_dynamodb_table.production_svc_status_table.arn,
"id" : aws_dynamodb_table.production_svc_status_table.id,
"name" : aws_dynamodb_table.production_svc_status_table.name,
"tags" : aws_dynamodb_table.production_svc_status_table.tags,
}
}
6 changes: 3 additions & 3 deletions providers.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.12.26"
required_version = ">= 1.7.5"

cloud {
organization = "soat-tech-challenge"
Expand All @@ -12,12 +12,12 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.34.0"
version = "~> 5.41"
}

tfe = {
source = "hashicorp/tfe"
version = "~> 0.51.1"
version = "~> 0.53.0"
}
}
}
Expand Down

0 comments on commit 49ec848

Please sign in to comment.