Skip to content

Commit

Permalink
feat: use version constraint for flux provider
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Lefevre <kevin@particule.io>
  • Loading branch information
ArchiFleKs committed Jul 6, 2023
1 parent a040071 commit a91ee72
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/aws/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
}
flux = {
source = "fluxcd/flux"
version = "1.0.0"
version = "~> 1.0"
}
github = {
source = "integrations/github"
Expand Down
2 changes: 1 addition & 1 deletion modules/azure/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
}
flux = {
source = "fluxcd/flux"
version = "1.0.0"
version = "~> 1.0"
}
github = {
source = "integrations/github"
Expand Down
2 changes: 1 addition & 1 deletion modules/google/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ terraform {
}
flux = {
source = "fluxcd/flux"
version = "1.0.0"
version = "~> 1.0"
}
github = {
source = "integrations/github"
Expand Down
2 changes: 1 addition & 1 deletion modules/scaleway/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
}
flux = {
source = "fluxcd/flux"
version = "1.0.0"
version = "~> 1.0"
}
github = {
source = "integrations/github"
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
}
flux = {
source = "fluxcd/flux"
version = "1.0.0"
version = "~> 1.0"
}
github = {
source = "integrations/github"
Expand Down

0 comments on commit a91ee72

Please sign in to comment.