builder/azure/common/template: remove unused TemplateBuilder.getResourceByType2() (#8419)
builder/azure/common/template: remove unused TemplateBuilder.toKeyVaultID()
This commit is contained in:
parent
2c22b9f721
commit
df031db9da
|
@ -375,25 +375,10 @@ func (s *TemplateBuilder) getResourceByType(t string) (*Resource, error) {
|
||||||
return nil, fmt.Errorf("template: could not find a resource of type %s", t)
|
return nil, fmt.Errorf("template: could not find a resource of type %s", t)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *TemplateBuilder) getResourceByType2(t string) (**Resource, error) {
|
|
||||||
for _, x := range *s.template.Resources {
|
|
||||||
if strings.EqualFold(*x.Type, t) {
|
|
||||||
p := &x
|
|
||||||
return &p, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil, fmt.Errorf("template: could not find a resource of type %s", t)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s *TemplateBuilder) setVariable(name string, value string) {
|
func (s *TemplateBuilder) setVariable(name string, value string) {
|
||||||
(*s.template.Variables)[name] = value
|
(*s.template.Variables)[name] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *TemplateBuilder) toKeyVaultID(name string) string {
|
|
||||||
return s.toResourceID(resourceKeyVaults, name)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s *TemplateBuilder) toResourceID(id, name string) string {
|
func (s *TemplateBuilder) toResourceID(id, name string) string {
|
||||||
return fmt.Sprintf("[resourceId(resourceGroup().name, '%s', '%s')]", id, name)
|
return fmt.Sprintf("[resourceId(resourceGroup().name, '%s', '%s')]", id, name)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue