Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Aug 5, 2024
1 parent ae7eee0 commit fbfed61
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ terraform {
source = "hashicorp/random"
version = "~>3.6"
}
tls = {
source = "hashicorp/tls"
version = "~>4.0"
}
}
}

Expand Down Expand Up @@ -119,6 +123,13 @@ resource "azurerm_role_assignment" "key_vault_secret_officer__current" {
}


# ------ External Secrets ------ #
resource "azurerm_key_vault_secret" "openai_api_key" {
key_vault_id = azurerm_key_vault.main.id
name = "${var.resource_prefix}-openai-api-key"
value = var.openai_api_key
}



# ------ Database Server ------ #
Expand Down

0 comments on commit fbfed61

Please sign in to comment.