Skip to content
Advertisement

How can I work with micronaut 3 and google secret manager?

Currently migrating my application to Micronaut 3, I encountered one problem with micronaut-gcp. Especially with the google secret manager. I am using gradle with Kotlin DSL.

Actual configuration: (not working, using plugin io.micronaut.library version 2.0.4)

  • gradle 7.2
  • micronaut 3.0.1

Previous configuration: (working with no plugin, using micronaut-bom)

  • gradle 6.5.1
  • micronaut 2.4.0
  • micronautGcp 3.5.0

I/ The Problem

My goal is to load some secrets as key/value pairs into a property source. I followed the documentation that says to use a bootstrap.yml as follows:

JavaScript

Then in my class I should be able to inject that secret value using the @Value annotation. Actually I am doing this in my tests. I am using the @MicronautTest annotation from jUnit5 so I have something that looks like this:

JavaScript

then comes the problem, when running any test, it fails in the initialization saying this:

JavaScript

II/ What I’ve tried ?

When I’ve seen that, I was thinking that maybe the bootstrap.yaml thing doesn’t work the I tried to use the lower lever access to secret manager using injecting SecretManagerServiceClient as follows:

JavaScript

but got same error Message: getTransportChannel() called when needsExecutor() is true with same path taken.

I also tried to upgrade to micronaut 3.0.1 but didn’t change anything.

III/ My solution to handle this

As my problem was to retrieve a secret during the testing stage of my ci/cd process and, as I am using Google Cloud Build. I could pass the secret using the availableSecrets feature in my cloudbuild.yaml:

JavaScript

then passing it in my application.yml:

JavaScript

and then in my code:

JavaScript

But I dont find this solution very satisfying as I find the bootstrap.yaml one more convenient.

If someone gets a solution for me or an idea/advice, I’ll be happy to take it.

Have a nice day !

Advertisement

Answer

I’ve been down that rabbit hole. Long story short I got past this by upgrading the google-cloud-secretmanager dependency from 1.6.4 to e.g. 2.0.2

Like so:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement