From acdd5f6380cbcbdf935c92ae44ae12eb75afa2bc Mon Sep 17 00:00:00 2001 From: Soulou Date: Fri, 26 Apr 2024 00:21:10 +0200 Subject: [PATCH 1/2] Bump v2.3.0 --- CHANGELOG.md | 9 ++++++++- docs/resources/container_type.md | 2 +- docs/resources/domain.md | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4de7dc8e..3dc6f3c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ ## To be Released -* feat(scalingo_app): expose application's base_url #175 +## v2.3.0 + +* resource(scalingo_app): expose application's base_url #175 +* resource(scalingo_container_type): make amount mandatory #191 +* resource(scalingo_domain): Add `letsencrypt_enabled` parameter #205 +* resource(scalingo_log_drain): Add `type` parameter mandatory #178 +* config: use `SCALINGO_REGION` if environment is set correctly +* chore(deps) Various dependency updates ## v2.2.0 diff --git a/docs/resources/container_type.md b/docs/resources/container_type.md index 1d3c2722..9777ea0c 100644 --- a/docs/resources/container_type.md +++ b/docs/resources/container_type.md @@ -30,12 +30,12 @@ resource "scalingo_container_type" "web" { ### Required +- `amount` (Number) Number of containers to boot for this type - `app` (String) ID of the targeted application - `name` (String) Name of the container type ### Optional -- `amount` (Number) Number of containers to boot for this type - `size` (String) Size of the container (S/M/L/etc.) ### Read-Only diff --git a/docs/resources/domain.md b/docs/resources/domain.md index 0beb4acc..2979d998 100644 --- a/docs/resources/domain.md +++ b/docs/resources/domain.md @@ -35,7 +35,7 @@ resource "scalingo_domain" "testappcom" { resource "scalingo_domain" "testappcom" { common_name = "testapp.com" app = scalingo_app.test_app.id - letsencrypt_enabled = false + letsencrypt_enabled = falsangeloe } ``` From eb90ea44748ed3ade6c2040eb53df63d54ede54a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Unbekandt?= <159253935+leo-scalingo@users.noreply.github.com> Date: Fri, 26 Apr 2024 12:36:51 +0200 Subject: [PATCH 2/2] Update docs/resources/domain.md Co-authored-by: Pierre Curzola --- docs/resources/domain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resources/domain.md b/docs/resources/domain.md index 2979d998..0beb4acc 100644 --- a/docs/resources/domain.md +++ b/docs/resources/domain.md @@ -35,7 +35,7 @@ resource "scalingo_domain" "testappcom" { resource "scalingo_domain" "testappcom" { common_name = "testapp.com" app = scalingo_app.test_app.id - letsencrypt_enabled = falsangeloe + letsencrypt_enabled = false } ```