diff --git a/CHANGELOG.md b/CHANGELOG.md index b487c1c31..8eea857ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ - [v1.2.4](services/iaas/CHANGELOG.md#v124) - Bump STACKIT SDK resourcemanager module from `v0.18.1` to `v0.18.2` - `logs`: + - [v0.4.0](services/logs/CHANGELOG.md#v040) + - **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request. - [v0.3.0](services/logs/CHANGELOG.md#v030) - **Feature:** Add new wait handlers for instance creation (`CreateLogsInstanceWaitHandler`), and instance deletion (`DeleteLogsInstanceWaitHandler`) - [v0.2.0](services/logs/CHANGELOG.md#v020) diff --git a/services/logs/CHANGELOG.md b/services/logs/CHANGELOG.md index c42a8027a..901bcfacd 100644 --- a/services/logs/CHANGELOG.md +++ b/services/logs/CHANGELOG.md @@ -1,3 +1,6 @@ +## v0.4.0 +- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request. + ## v0.3.0 - **Feature:** Add new wait handlers for instance creation (`CreateLogsInstanceWaitHandler`), and instance deletion (`DeleteLogsInstanceWaitHandler`) diff --git a/services/logs/VERSION b/services/logs/VERSION index 268b0334e..fb7a04cff 100644 --- a/services/logs/VERSION +++ b/services/logs/VERSION @@ -1 +1 @@ -v0.3.0 +v0.4.0 diff --git a/services/logs/configuration.go b/services/logs/configuration.go index 0248f7981..ebce3389c 100644 --- a/services/logs/configuration.go +++ b/services/logs/configuration.go @@ -22,15 +22,12 @@ func NewConfiguration() *config.Configuration { Debug: false, Servers: config.ServerConfigurations{ { - URL: "https://logs.api.{region}stackit.cloud", + URL: "https://logs.api.stackit.cloud", Description: "No description provided", Variables: map[string]config.ServerVariable{ "region": { Description: "No description provided", - DefaultValue: "eu01.", - EnumValues: []string{ - "eu01.", - }, + DefaultValue: "global", }, }, },