Skip to content

Commit

Permalink
increased time sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
amanpruthi committed Jun 14, 2024
1 parent 248aa63 commit 37eb507
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,12 @@ resource "time_sleep" "wait_seconds" {
create_duration = "600s"
}

data "kubernetes_ingress_v1" "ingress" {
metadata {
name = "${var.namespace}-internal"
}
}

## In order to support private link required min version 0.13.0 of operator-wandb chart

module "private_link" {
Expand Down
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,7 @@ output "database_instance_type" {
output "private_attachement_id" {
value = var.create_private_link ? module.private_link[0].private_attachement_id : null
}

output "kubernetes_ingress" {
value = data.kubernetes_ingress_v1.ingress.metadata
}

0 comments on commit 37eb507

Please sign in to comment.