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

azurerm_mariadb_server should support "ssl_minimal_tls_version_enforced" #18679

Closed
1 task done
Gill-Bates opened this issue Oct 10, 2022 · 3 comments
Closed
1 task done

Comments

@Gill-Bates
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

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 Version

1.2.3

AzureRM Provider Version

3.26.0

Affected Resource(s)/Data Source(s)

azurerm_mariadb_server

Terraform Configuration Files

resource "azurerm_mariadb_server" "example" {
  name                = "example-mariadb-server"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name

  administrator_login          = "mariadbadmin"
  administrator_login_password = "H@Sh1CoR3!"

  sku_name   = "B_Gen5_2"
  storage_mb = 5120
  version    = "10.2"

  auto_grow_enabled                = true
  backup_retention_days            = 7
  geo_redundant_backup_enabled     = false
  public_network_access_enabled    = false
  ssl_enforcement_enabled          = true
  ssl_minimal_tls_version_enforced = "TLS1_2"
}

Debug Output/Panic Output

│ Error: Unsupported argument
│
│   on tf_main.tf line 37, in resource "azurerm_mariadb_server" "mariadb":
│   37:   ssl_minimal_tls_version_enforced = "TLS1_2"
│
│ An argument named "ssl_minimal_tls_version_enforced" is not expected here.

Expected Behaviour

Terraform should consider this parameter, because it is supported by Microsoft:

image

Actual Behaviour

No response

Steps to Reproduce

No response

Important Factoids

No response

References

No response

@mikemadeja
Copy link
Contributor

Hello @Gill-Bates, I put in a PR to allow this parameter.

@catriona-m
Copy link
Member

Thanks for raising this issue @Gill-Bates - it seems this has now been added by #20782 so this can be closed now. Thanks!

Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 11, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants