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

[ORC-587] Bundle import params #140

Merged
merged 12 commits into from
Sep 17, 2024
Prev Previous commit
Next Next commit
remove unnecessary function
  • Loading branch information
chrisghill committed Sep 12, 2024
commit e34df3f50d6106082d5a7919a9c5edf7a61d9470
16 changes: 0 additions & 16 deletions pkg/params/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,6 @@ import (
"sigs.k8s.io/yaml"
)

var bicepProvisionerDefaultParams = map[string]interface{}{
"required": []string{"provisioner"},
"properties": map[string]interface{}{
"provisioner": map[string]interface{}{
"required": []string{"region"},
"properties": map[string]interface{}{
"region": map[string]interface{}{
"type": "string",
"title": "Region",
"description": "Region to deploy Azure bicep template into",
},
},
},
},
}

func GetFromPath(templateName, path string) (string, error) {
if path == "" {
return "", nil
Expand Down
Loading