public async Task <ActionResult> Get()
        {
            // Note - this is just a proof of concept - we should not call the key vault per action like this due to rate limiting
            var secretValue = await _vault.GetSecret("testSecret");

            return(new OkObjectResult(new { secretValue = secretValue }));
        }