"PRINCIPAL_SECRET": "$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/app-dev-sp-password --query value -otsv)",
"PRINCIPAL_SECRET": "$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/app-dev-sp-password --query value -otsv)",
"CLIENT_ID": "$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/aad-client-id --query value -otsv)",
"CLIENT_ID": "$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/aad-client-id --query value -otsv)",
"CLIENT_SECRET": "$CLIENT_SECRET",
"CLIENT_SECRET": "$CLIENT_SECRET",
"OSDU_BASE": "${UNIQUE}",
"OSDU_HOST": "",
"REGION": "${TF_VAR_resource_group_location}",
"REGION": "${TF_VAR_resource_group_location}",
"ES_HOST": "$(echo$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/opendes-elastic-endpoint --query value -otsv)\
"ES_HOST": "$(echo$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/opendes-elastic-endpoint --query value -otsv)\
| sed's/^.\{8\}//g' | sed's/.\{5\}$//')",
| sed's/^.\{8\}//g' | sed's/.\{5\}$//')",
"ES_AUTH_TOKEN": "$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/opendes-elastic-username --query value -otsv):$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/opendes-elastic-password --query value -otsv) | base64",
"ES_AUTH_TOKEN": "$(echo$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/opendes-elastic-username --query value -otsv):$(az keyvault secret show --id https://${ENV_VAULT}.vault.azure.net/secrets/opendes-elastic-password --query value -otsv) | base64)",
"INITIAL_TOKEN": ""
"INITIAL_TOKEN": ""
}
}
}
}
EOF
EOF
```
```
__Retrieve Initial Token__
__Retrieve Additional Values__
The `INITIAL_TOKEN` is an open id token. Follow the directions in osduauth to obtain a token and once obtained save the value in settings.
The `INITIAL_TOKEN` is an open id token. Follow the directions in osduauth to obtain a token and once obtained save the value in settings.
The `OSDU_HOST` is your FQDN for your osdu environment.