Skip to content

Commit

Permalink
add otel elastic token to wallet kv
Browse files Browse the repository at this point in the history
  • Loading branch information
petretiandrea committed Apr 3, 2024
1 parent f76a052 commit 81e6ea7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/domains/wallet-common/02_security.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,18 @@ resource "azurerm_key_vault_secret" "mongo_wallet_password" {
}
}

resource "azurerm_key_vault_secret" "elastic_otel_token_header" {
name = "elastic-otel-token-header"
value = "<TO UPDATE MANUALLY ON PORTAL>"
key_vault_id = module.key_vault.id

lifecycle {
ignore_changes = [
value,
]
}
}

resource "azurerm_key_vault_secret" "npg_service_api_key" {
name = "npg-service-api-key"
value = "<TO UPDATE MANUALLY ON PORTAL>"
Expand Down
1 change: 1 addition & 0 deletions src/domains/wallet-common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
| [azurerm_key_vault_access_policy.azdevops_iac_managed_identities](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_access_policy) | resource |
| [azurerm_key_vault_access_policy.azdevops_iac_policy](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_access_policy) | resource |
| [azurerm_key_vault_access_policy.cdn_wallet_kv](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_access_policy) | resource |
| [azurerm_key_vault_secret.elastic_otel_token_header](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_secret) | resource |
| [azurerm_key_vault_secret.migration_wallet_token_test_dev](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_secret) | resource |
| [azurerm_key_vault_secret.mongo_wallet_password](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_secret) | resource |
| [azurerm_key_vault_secret.npg_notifications_jwt_secret_key](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_secret) | resource |
Expand Down

0 comments on commit 81e6ea7

Please sign in to comment.