Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Resource struct {
Dashes bool `json:"dashes"`
}

// Length allowed for that resorce
// Length allowed for that resource
type Length struct {
Min int `json:"min"`
Max int `json:"max"`
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ locals {
suffix_unique = join("-", concat(var.suffix, [local.random]))
suffix_safe = lower(join("", var.suffix))
suffix_unique_safe = lower(join("", concat(var.suffix, [local.random])))
// Names based in the recomendations of
// Names based on the recommendations of
// https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging
az = {
analysis_services_server = {
Expand Down
2 changes: 1 addition & 1 deletion templates/main.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ locals {
suffix_unique = join("-", concat(var.suffix, [local.random]))
suffix_safe = lower(join("", var.suffix))
suffix_unique_safe = lower(join("", concat(var.suffix, [local.random])))
// Names based in the recomendations of
// Names based on the recommendations of
// https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging
az = {
{{- range . }}
Expand Down
Loading