Skip to content

Commit

Permalink
Fix: potential bug added in PR #470
Browse files Browse the repository at this point in the history
  • Loading branch information
Devang Gaur authored and cesar-rodriguez committed Jan 19, 2021
1 parent 4d74093 commit 2536a09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/policy/all.go
Expand Up @@ -18,7 +18,7 @@ package policy

const (
defaultAllIacType supportedIacType = "terraform"
defaultAllIacVersion supportedIacVersion = "v14"
defaultAllIacVersion supportedIacVersion = "v12"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/policy/azure.go
Expand Up @@ -19,7 +19,7 @@ package policy
const (
azure supportedCloudType = "azure"
defaultAzureIacType supportedIacType = "terraform"
defaultAzureIacVersion supportedIacVersion = "v14"
defaultAzureIacVersion supportedIacVersion = "v12"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/policy/gcp.go
Expand Up @@ -19,7 +19,7 @@ package policy
const (
gcp supportedCloudType = "gcp"
defaultGCPIacType supportedIacType = "terraform"
defaultGCPIacVersion supportedIacVersion = "v14"
defaultGCPIacVersion supportedIacVersion = "v12"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/policy/github.go
Expand Up @@ -19,7 +19,7 @@ package policy
const (
github supportedCloudType = "github"
defaultGithubIacType supportedIacType = "terraform"
defaultGithubIacVersion supportedIacVersion = "v14"
defaultGithubIacVersion supportedIacVersion = "v12"
)

func init() {
Expand Down

0 comments on commit 2536a09

Please sign in to comment.