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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for azurerm_network_manager_connectivity_configuration data source #25587

Closed
1 task done
stusklinar opened this issue Apr 11, 2024 · 0 comments 路 Fixed by #25746
Closed
1 task done

Support for azurerm_network_manager_connectivity_configuration data source #25587

stusklinar opened this issue Apr 11, 2024 · 0 comments 路 Fixed by #25746

Comments

@stusklinar
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 and review the contribution guide to help.

Description

There is currently a Terraform resource for the azurerm_network_manager_connectivity_configuration but the AzureRM provider lacks a data source for the same type of resource.

I'm unsure if its not possible to get the Connectivity Configuration as a data source and perhaps that's why this hasn't been done - but I didn't see any Issues reporting the data source as missing so maybe it just hasn't been thought of yet.

New or Affected Resource(s)/Data Source(s)

azurerm_network_manager_connectivity_configuration

Potential Terraform Configuration

data "azurerm_network_manager" "main" {
  resource_group_name = local.general_resource_group_name

  name = "${local.organization_name}-${local.general_resource_group_name}-nm"
}

data "azurerm_network_manager_connectivity_configuration" "config" {
  network_manager_id    = data.azurerm_network_manager.main.network_manager_id
  name = local.connectivity_group_name
}

References

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/network_manager_connectivity_configuration

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

Successfully merging a pull request may close this issue.

2 participants