Andre Gallo

Results 8 issues of Andre Gallo

Hi @jeremydaly Thanks a lot for your work on this library. I was looking for something designed with single table in mind and found dynamodb-toolbox! Just a quick question: What...

Handle the scenario where if 2 certs are generated for the CN, certbot appends an integer identifier after the foldername. 1. Revert commit 7fc6089 2. Scrape the output of certbot...

bug

I've got the following migration: ``` .createTable('users', function(table) { table.increments('id').unsigned().primary(); table.string('username', 30).notNullable().unique(); table.string('password', 60).notNullable(); table.string('email', 50).notNullable().unique(); table.string('firstName', 50).notNullable(); table.string('lastName', 50).notNullable(); table.string('position', 40); table.string('pictureUrl', 256).notNullable(); table.boolean('active').notNullable().defaultTo(true); table.boolean('emailVerified').notNullable().defaultTo(false); table.boolean('lockoutEnabled').notNullable().defaultTo(false); table.dateTime('lockoutUntil'); table.timestamp('createdAt').defaultTo(knex.fn.now()); table.timestamp('updatedAt').defaultTo(knex.fn.now());...

schema

No matter how hard I try, I can't really get passed this error: > Invalid request provided: Create T askDefinition: The Systems Manager parameter name specified for secret JWT_KEY is...

area/deployment

Hi there, Thanks for providing these libraries for deploying changes to Netlify via Github Actions. I have the below configured in my Github workflow which triggers a Netlify build. ```...

When using a combination of serverless config settings such as the below: ``` package: individually: true functions: function-name: package: include: - lib/module/index.js exclude: - lib/otherModule/** - _lalalambda/** ``` Lalalambda doesn't...

bug

It seems that I cannot really use `http.version` equals `http2` as I get the error below when deploying my Load Balance Web Service: > - An HTTP listener rule for...

type/feature

I've got `lpass` installed via Homebrew on a Mac. I run kamal with the docker alias. Here is what happens when I try to run `kamal secrets fetch --adapter lastpass...