benzoh
benzoh
Thank you for your reply. But I can't increase the runtime version of the extension. Isn't it necessary to set the parameter here to PROVIDED_AL_2?  
@renanwilliam yes. I solved it by defining the [layers myself](https://github.com/benzoh/lambda-oci8-layer). Please have a look. `serverless.yml` looks like this. ```serverless.yml functions: app: handler: public/index.php layers: - ${bref:layer.php-80-fpm} - arn:aws:lambda:ap-northeast-1:XXXXXXXXXXXX:layer:lambda-oci8-layer:3 events: -...
I think the solution is to publish with the `PROVIDED_AL_2` runtime. I published layer with `--compatible-runtimes provided.al2` options. ```sh aws lambda publish-layer-version \ --layer-name lambda-oci8-layer \ --description "My oci8 layer"...