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

The "tier" variable should not be required on web apps modules #53

Open
lucacavallaro opened this issue Jul 3, 2024 · 0 comments
Open
Assignees
Labels
enhancement New feature or request

Comments

@lucacavallaro
Copy link
Member

Issue

tier is required, but is only needed when app_service_plan_id is null

Affected modules

Current variable definition

variable "tier" {
  type        = string
  description = "Resource tiers depending on demanding workload. Allowed values are 'premium', 'standard', 'test'. Note, \"test\" does not support deployment slots."
  default     = "premium"

  validation {
    condition     = contains(["premium", "standard", "test"], var.tier)
    error_message = "Allowed values for \"tier\" are \"premium\", \"standard\", or \"test\". Note, \"test\" does not support deployment slots."
  }
}
@lucacavallaro lucacavallaro added the enhancement New feature or request label Jul 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants