mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
12 lines
240 B
Go
12 lines
240 B
Go
package azure
|
|
|
|
import "fmt"
|
|
|
|
const resourceGroupAPIVersion = "2015-01-01"
|
|
|
|
func resourceGroupDefaultURLFunc(resourceGroupName string) func() string {
|
|
return func() string {
|
|
return fmt.Sprintf("resourceGroups/%s", resourceGroupName)
|
|
}
|
|
}
|