File tree Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,7 @@ title = "PRIME ReportStream Gitleaks Configuration"
204
204
' ApiKeyCredential\(\"flexion\"' ,
205
205
' authType: \"two-legged\"' ,
206
206
' Authorization-Type: \"username/password\"' ,
207
+ ' cdctiautomated_sa'
207
208
]
208
209
paths = [
209
210
' .terraform/modules/' ,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ locals {
18
18
" RS_OKTA_authkey" = var.RS_OKTA_authKey
19
19
" RS_OKTA_ClientId" = var.RS_OKTA_clientId
20
20
" ETOR_TI_baseurl" = var.etor_ti_base_url
21
+ " cdctiautomated" = var.cdctiautomated_sa
21
22
# Manage client secrets via a Key Vault
22
23
" CREDENTIAL_STORAGE_METHOD" = " AZURE"
23
24
" CREDENTIAL_KEY_VAULT_NAME" = var.client_config_key_vault_name
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ variable "RS_OKTA_authKey" {}
90
90
variable "RS_OKTA_clientId" {}
91
91
variable "RS_OKTA_scope" {}
92
92
variable "etor_ti_base_url" {}
93
+ variable "cdctiautomated_sa" {
94
+ default = " "
95
+ }
93
96
94
97
variable "subnets" {
95
98
description = " A set of all available subnet combinations"
Original file line number Diff line number Diff line change @@ -93,4 +93,10 @@ data "azurerm_key_vault_secret" "RS_OKTA_authKey" {
93
93
name = " functionapp-RS-OKTA-authkey"
94
94
key_vault_id = data. azurerm_key_vault . app_config . id
95
95
96
+ }
97
+
98
+ data "azurerm_key_vault_secret" "cdctiautomated_sa" {
99
+ name = " functionapp-cdctiautomated"
100
+ key_vault_id = data. azurerm_key_vault . app_config . id
101
+
96
102
}
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ module "function_app" {
160
160
RS_OKTA_clientId = data. azurerm_key_vault_secret . RS_OKTA_clientId . value
161
161
RS_OKTA_authKey = data. azurerm_key_vault_secret . RS_OKTA_authKey . value
162
162
etor_ti_base_url = local. init . etor_ti_base_url
163
+ cdctiautomated_sa = data. azurerm_key_vault_secret . cdctiautomated_sa . value
163
164
}
164
165
165
166
module "front_door" {
You can’t perform that action at this time.
0 commit comments