powertools-lambda-python icon indicating copy to clipboard operation
powertools-lambda-python copied to clipboard

Publish layer to Gov Cloud regions

Open bryantbiggs opened this issue 4 years ago • 2 comments

Is your feature request related to a problem? Please describe.

  • Consider publishing the layer to the Gov Cloud regions. I checked the list of regions the layer is currently published to but it looks like the Gov Cloud regions are not present.

Describe the solution you'd like

  • It would be great if the layer could be published and available in the Gov Cloud regions as well

Describe alternatives you've considered

  • For now, I am recommending Gov Cloud users perform a copy of the layer to their account and use that route as a temporary work around

Additional context

bryantbiggs avatar Dec 11 '21 12:12 bryantbiggs

Any clue on the failures? cc @Korbeil

jcchavezs avatar Oct 23 '22 20:10 jcchavezs

In the E2E app composer.json you need to replace:

    "symfony/console": "6.1.*",
    "symfony/dotenv": "6.1.*",
    "symfony/flex": "^2",
    "symfony/framework-bundle": "6.1.*",
    "symfony/runtime": "6.1.*",
    "symfony/webapp-pack": "*",
    "symfony/yaml": "6.1.*",

by

    "symfony/console": "*",
    "symfony/dotenv": "*",
    "symfony/flex": "^2",
    "symfony/framework-bundle": "*",
    "symfony/runtime": "*",
    "symfony/webapp-pack": "*",
    "symfony/yaml": "*",

So Symfony Flex will follow global Symfony version requirements

Korbeil avatar Oct 24 '22 15:10 Korbeil