diff --git a/config.toml b/config.toml index 6915b9a953..f50e7312f0 100644 --- a/config.toml +++ b/config.toml @@ -205,7 +205,7 @@ enable = true [params.localstack] # LocalStack specific configuration values -latest_version = "4.4.0" +latest_version = "4.5.0" [params.localstack.cli_links] # Configure the different download links for the cli-binary-download shortcode diff --git a/content/en/references/configuration.md b/content/en/references/configuration.md index 4ce14f4ee9..8c3bae9573 100644 --- a/content/en/references/configuration.md +++ b/content/en/references/configuration.md @@ -324,6 +324,7 @@ Please consult the [migration guide]({{< ref "user-guide/aws/lambda#migrating-to | `MYSQL_IMAGE` | `mysql:8.0` | Defines a specific MySQL image that should be used when spinning up the MySQL engine. Only available if `RDS_MYSQL_DOCKER` is enabled. | | `MSSQL_IMAGE` | `mcr.microsoft.com/mssql/server:2022-latest` | Defines a specific image that should be used when spinning up a SQL server engine. | | `MSSQL_ACCEPT_EULA` | `Y` | Set to `Y` if you accept the [EULA from MSSQL](https://hub.docker.com/_/microsoft-mssql-server). | +| `RDS_PG_MAX_CONNECTIONS` | `0` (default) | Sets the maximum number of connections for Postgres RDS instances. | ### S3 diff --git a/content/en/user-guide/aws/codebuild/index.md b/content/en/user-guide/aws/codebuild/index.md index 485a19a020..da93ed4e51 100644 --- a/content/en/user-guide/aws/codebuild/index.md +++ b/content/en/user-guide/aws/codebuild/index.md @@ -3,7 +3,7 @@ title: CodeBuild linkTitle: CodeBuild description: > Get started with CodeBuild on LocalStack -tags: ["Pro image"] +tags: ["Base"] --- ## Introduction diff --git a/content/en/user-guide/aws/codedeploy/index.md b/content/en/user-guide/aws/codedeploy/index.md index 70cf6e530a..aa26ce0394 100644 --- a/content/en/user-guide/aws/codedeploy/index.md +++ b/content/en/user-guide/aws/codedeploy/index.md @@ -3,7 +3,7 @@ title: CodeDeploy linkTitle: CodeDeploy description: > Get started with CodeDeploy on LocalStack -tags: ["Pro image"] +tags: ["Ultimate"] --- ## Introduction diff --git a/content/en/user-guide/aws/codepipeline/index.md b/content/en/user-guide/aws/codepipeline/index.md index 2fe106686c..cd21125f8d 100644 --- a/content/en/user-guide/aws/codepipeline/index.md +++ b/content/en/user-guide/aws/codepipeline/index.md @@ -3,7 +3,7 @@ title: CodePipeline linkTitle: CodePipeline description: > Get started with CodePipeline on LocalStack -tags: ["Pro image"] +tags: ["Ultimate"] --- ## Introduction diff --git a/content/en/user-guide/aws/rds/index.md b/content/en/user-guide/aws/rds/index.md index 8a772feaf9..75ee825d3b 100644 --- a/content/en/user-guide/aws/rds/index.md +++ b/content/en/user-guide/aws/rds/index.md @@ -178,12 +178,12 @@ For instance, the `storage-encrypted` flag is returned as configured, but active ### PostgreSQL Engine When you establish an RDS DB cluster or instance using the `postgres`/`aurora-postgresql` DB engine along with a specified `EngineVersion`, LocalStack will dynamically install and configure the corresponding PostgreSQL version as required. -Presently, you have the option to choose major versions ranging from 11 to 16. -If you select a major version beyond this range, the system will automatically default to version 15. +Presently, you have the option to choose major versions ranging from 11 to 17. +If you select a major version beyond this range, the system will automatically default to version 17. It's important to note that the selection of minor versions is not available. The latest major version will be installed within the Docker environment. -If you wish to prevent the installation of customized versions, adjusting the `RDS_PG_CUSTOM_VERSIONS` environment variable to `0` will enforce the use of the default PostgreSQL version 15. +If you wish to prevent the installation of customized versions, adjusting the `RDS_PG_CUSTOM_VERSIONS` environment variable to `0` will enforce the use of the default PostgreSQL version 17. {{< callout >}} While the [`DescribeDbCluster`](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html) and [`DescribeDbInstances`](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html) APIs will still reflect the initially defined `engine-version`, the actual installed PostgreSQL engine might differ.