Skip to content

Commit

Permalink
output added
Browse files Browse the repository at this point in the history
  • Loading branch information
kusumsiri authored Jul 27, 2023
1 parent 25cdb08 commit 3ae7d51
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 0 additions & 1 deletion 01-providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {

provider "kubernetes" {
config_path = "~/.kube/config"
# config_context = "minikube"
config_context = "microk8s"
}

Expand Down
9 changes: 9 additions & 0 deletions 04-outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
output "dynamodb_table_name" {
value = aws_dynamodb_table.state_locking.name
description = "The ARN of the DynamoDB table"
}

output "dynamodb_table_arn" {
value = aws_dynamodb_table.state_locking.arn
description = "The ARN of the DynamoDB table"
}

0 comments on commit 3ae7d51

Please sign in to comment.