Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terraform to use coraglogix sdk #296

Merged
merged 26 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
29 changes: 29 additions & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Cleanup Test Resources

on:
schedule:
- cron: 0 1 * * *

jobs:
test:
env:
GO111MODULE: on
strategy:
matrix:
go-version: [ 1.23.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8
with:
go-version: ${{ matrix.go-version }}
- name: Acceptance Tests
env:
CORALOGIX_ENV: ${{ secrets.CORALOGIX_ENV }}
CORALOGIX_API_KEY: ${{ secrets.CORALOGIX_API_KEY }}
TEST_TEAM_ID: ${{ secrets.TEST_TEAM_ID }}
AWS_TEST_ROLE: ${{ secrets.AWS_TEST_ROLE }}
run: |
go run scripts/delete-all-cx-resources.go
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -722,3 +722,26 @@ New features:
Fix:

* Fixed geo_ip enrichments

# Release 1.18.15

Fix:

* SLO issue when using variables

# Release 1.18.16

Feature:

* Add analytics header to requests

# Release 2.0.0

The provider is now based on the Coralogix Management SDK with the latest APIs. This fixes a variety of issues and should be mostly transparent to the user.

Breaking Changes:

#### resource/coralogix_alert

Revamped the structure of alerts in general. Please consult the guide v1-v2-migration-guide on how to migrate.

81 changes: 0 additions & 81 deletions coralogix/clientset/actions-client.go

This file was deleted.

81 changes: 0 additions & 81 deletions coralogix/clientset/alerts-client.go

This file was deleted.

81 changes: 0 additions & 81 deletions coralogix/clientset/alerts-scheduler-client.go

This file was deleted.

80 changes: 0 additions & 80 deletions coralogix/clientset/apikeys-client.go

This file was deleted.

Loading
Loading