Ṃarc Woolfson
Ṃarc Woolfson
@binaryartifex Do you remember if you found a solution to this issue?
Sounds like a duplicate of #2915
My workaround for this is as follows (v1.4.4): ``` public class Startup : IWebJobsStartup { public void Configure(IWebJobsBuilder builder) { builder.AddSwashBuckle(Assembly.GetExecutingAssembly()); Configure(new FunctionsHostBuilder(builder.Services)); } private static void Configure(IFunctionsHostBuilder builder) {...
@guizler I modified `amplify.yml` to force an `amplify push`: ```yml backend: phases: preBuild: commands: - chmod u+x ./scripts/amplify-push.sh build: commands: - ./scripts/amplify-push.sh - amplify push --yes # ... ```
Just a heads up: After moving the app to a monorepo the Amplify Console builds started inexplicably failing again for me without any related changes to the `.yml` nor environment...
Duplicate of #3949?
My workaround to the above was to manually edit the `tfstate` to set the new password. Not ideal, sure, but it unblocked me!
When upgrading to `azure/azapi` v2, you [no longer need to](https://registry.terraform.io/providers/Azure/azapi/latest/docs/guides/2.0-upgrade-guide#breaking-changes) `jsondecode()` when retrieving the `clientId`, i.e.: ```hcl data "azapi_resource" "app-service-identity" { name = "default" parent_id = azurerm_linux_web_app.example.id type = "Microsoft.ManagedIdentity/identities@2018-11-30"...
@connorford2 Did you ever get a resolution to this? It seems to me like regular expressions just do not work as advertised in the documentation. This has also been duplicated...
It looks like the [updated types](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/72649) were released yesterday in [v8.15.1 of @types/pg](https://www.npmjs.com/package/@types/pg/v/8.15.1). This has fixed the above error for me.