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

Typo in module/cloudeos/azure/router/vars.tf #1

Open
mpergament opened this issue Jan 22, 2021 · 1 comment
Open

Typo in module/cloudeos/azure/router/vars.tf #1

mpergament opened this issue Jan 22, 2021 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@mpergament
Copy link
Contributor

Error: Unsupported argument

  on azure_edge.tf line 75, in module "azureedge1cloudeos2":
  75:   availability_set_id     = module.edge1.availability_set_id

An argument named "availability_set_id" is not expected here. Did you mean
"availablity_set_id"?
variable "availablity_set_id" {
  default     = ""
  description = "Availability set id"
}

Should be:

variable "availability_set_id" {
  default     = ""
  description = "Availability set id"
}
@adhipgupta adhipgupta self-assigned this Jan 22, 2021
@adhipgupta adhipgupta added the bug Something isn't working label Jan 22, 2021
@adhipgupta
Copy link

Thanks for finding this. Yes, this a typo. Will make the change in the Azure modules to change availblity to availability.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants