Skip to content

Commit

Permalink
Add Azure provider support
Browse files Browse the repository at this point in the history
  • Loading branch information
nprokopic committed Jul 23, 2024
1 parent b4f048a commit 4a338af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Add Azure provider to the list of supported providers.

## [0.4.0] - 2024-06-21

### Added

- `Client`
- `GetReleasesForGitReference` returns all releases for the specified provider and from the specified git reference.
- `GetReleaseForGitReference` returns a release with the specified release version for the specified provider and from
Expand Down
4 changes: 4 additions & 0 deletions sdk/api/v1alpha1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ import (
const (
// ProviderAws represents the new AWS provider which is implemented with Cluster API.
ProviderAws Provider = "aws"

// ProviderAzure represents the new Azure provider which is implemented with Cluster API.
ProviderAzure Provider = "azure"
)

var SupportedProviders = []Provider{
ProviderAws,
ProviderAzure,
}

type Provider string
Expand Down

0 comments on commit 4a338af

Please sign in to comment.