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

Allow define DHCP static associations #1036

Closed
asyd opened this issue Jan 12, 2022 · 0 comments · Fixed by #1156 or #1157
Closed

Allow define DHCP static associations #1036

asyd opened this issue Jan 12, 2022 · 0 comments · Fixed by #1156 or #1157
Assignees
Labels
enhancement vpc Virtual Private Cloud (VPC) issues, bugs and feature requests
Milestone

Comments

@asyd
Copy link

asyd commented Jan 12, 2022

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 other comments that do not add relevant new information or questions, 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

Description

Provide a resource to create DHCP static association table

New or Affected Resource(s)

  • scaleway_vpc_public_gateway_dhcp
  • scaleway_vpc_public_gateway_dhcp_static_association_table (idea)

Potential Terraform Configuration

resource "scaleway_vpc_public_gateway_dhcp_static_association" "myvpc_associations" {
  static_addrs = [
   scaleway_vpc_public_gatreway_dhcp_assocation_table(scaleway_instance_private_nic.nic1.mac_address, "192.168.1.1"),
   scaleway_vpc_public_gatreway_dhcp_assocation_table(scaleway_instance_private_nic.nic2.mac_address, "192.168.1.2"),
 ] 
}

resource "scaleway_vpc_public_gateway_dhcp" "vrack_gw_dhcp" {
  subnet = "10.43.0.0/24"
  static_associations = scaleway_vpc_public_gateway_dhcp_static_association.myvpc_associations.table
}

References

  • scaleway_vpc_public_gateway_dhcp
@remyleone remyleone added this to the v2.3.0 milestone Jan 12, 2022
@Monitob Monitob linked a pull request Mar 29, 2022 that will close this issue
@Monitob Monitob linked a pull request Mar 30, 2022 that will close this issue
@remyleone remyleone reopened this Mar 30, 2022
@remyleone remyleone added the vpc Virtual Private Cloud (VPC) issues, bugs and feature requests label Jul 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement vpc Virtual Private Cloud (VPC) issues, bugs and feature requests
Projects
None yet
3 participants