You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For most variable groups there is no problem. However, when creating a KeyVault backed variable group, the strict typing can become a challenge. There are 2 issues:
When creating a KeyVault, we need to work with the following struct. I'm showing an abridged version here:
For most variable groups there is no problem. However, when creating a KeyVault backed variable group, the strict typing can become a challenge. There are 2 issues:
VariableGroup.ProviderData
needs to be configured as a*AzureKeyVaultVariableGroupProviderData
Variables
needs to be configured as a*map[string]AzureKeyVaultVariableValue
The lack of inheritence in Go requires the generated code to produce a
VariableGroup
that looks more like the following:Note: We will need to be able to have this data in
POST
API calls as well as returned by theGET
API call.The text was updated successfully, but these errors were encountered: