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

Loadbalancer Standard SKU not supported #302

Open
Cyr-Az opened this issue Oct 29, 2024 · 2 comments
Open

Loadbalancer Standard SKU not supported #302

Cyr-Az opened this issue Oct 29, 2024 · 2 comments

Comments

@Cyr-Az
Copy link

Cyr-Az commented Oct 29, 2024

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Terraform (and AzureStack Provider) Version

Azure stack provider v1.0.0

Affected Resource(s)

  • azurestack_lb

Terraform Configuration Files

resource "azurestack_lb" "example" {
  name = "example-load-balancer"
  location = azurestack_resource_group.test.location
  resource_group_name = azurestack_resource_group.test.name
  sku = "Standard"

  frontend_ip_configuration {
  name = "example-frontend-ip"
  public_ip_address_id = azurestack_public_ip.example.id
  }
}

Debug Output

N/A

Panic Output

N/A

Expected Behaviour

A loadbalancer with SKU "Standard" should have been created, since it should be supported by the provider according to the documentation ( https://registry.terraform.io/providers/hashicorp/azurestack/latest/docs/resources/loadbalancer#sku )

Actual Behaviour

Error: expected sku to be one of [Basic], got Standard
│
│   with azurestack_lb.example,
│   on main.tf line 20, in resource "azurestack_lb" "example":
│   20:   sku = "Standard"

The provider code does actually not support Standard lb : https://github.com/hashicorp/terraform-provider-azurestack/blob/main/internal/services/loadbalancer/loadbalancer_resource.go

Steps to Reproduce

N/A

Important Factoids

N/A

References

https://registry.terraform.io/providers/hashicorp/azurestack/latest/docs/resources/loadbalancer#sku

@AHPanna
Copy link

AHPanna commented Oct 29, 2024

+1

1 similar comment
@bicisteadm
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants