I'm using pulumi with azure-native package to create azure infrastructure. I create Static Web App:
const staticApp = new azureNative.web.StaticSite(
"test",
{
resourceGroupName: "test-static-site",
location: location,
name: getResourceName(projectResources.staticSite)
});
Later on I want to deploy files to this app using AzureStaticWebApp@0
pipeline task:
- task: AzureStaticWebApp@0
displayName: 'Deploy'
inputs:
app_location: '/.../build'
api_location: '/.../api'
output_location: ''
skip_app_build: true
azure_static_web_apps_api_token: '???'
I expect azure_static_web_apps_api_token
be a part of pulumi azureNative.web.StaticSite
, but it's not there. Is there a way to get this token value from pulumi output?