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

fix: Resolved Miscellaneous Issues in IPAM and IPAM Federation #176

Merged
merged 2 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data-sources/federation_federated_blocks.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bloxone_federation_federated_blocks Data Source - terraform-provider-bloxone"
subcategory: "IPAM Federation""
subcategory: "IPAM Federation"
description: |-
Retrieves information about existing Federated Blocks.
The Federated Block object allows a uniform representation of the address space segmentation, supporting functions such as administrative grouping, routing aggregation, delegation etc.
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/federation_federated_realms.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bloxone_federation_federated_realms Data Source - terraform-provider-bloxone"
subcategory: "IPAM Federation""
subcategory: "IPAM Federation"
description: |-
Retrieves information about existing Federated Realm.
The Federated Realm object object is a unique set of federated blocks per realm.
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/federation_federated_block.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bloxone_federation_federated_block Resource - terraform-provider-bloxone"
subcategory: "IPAM Federation""
subcategory: "IPAM Federation"
description: |-
Manages a Federated Block.
The Federated Block object allows a uniform representation of the address space segmentation, supporting functions such as administrative grouping, routing aggregation, delegation etc.
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/federation_federated_realm.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bloxone_federation_federated_realm Resource - terraform-provider-bloxone"
subcategory: "IPAM Federation""
subcategory: "IPAM Federation"
description: |-
Manages the Federated Realm.
The Federated Realm object object is a unique set of federated blocks per realm.
Expand Down
9 changes: 5 additions & 4 deletions docs/resources/ipam_address.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ resource "bloxone_ipam_subnet" "example" {
}

resource "bloxone_ipam_range" "example" {
address = "10.1.0.10"
end = "10.1.0.20"
space = bloxone_ipam_ip_space.example.id
start = "10.1.0.10"
end = "10.1.0.20"
space = bloxone_ipam_ip_space.example.id
depends_on = [bloxone_ipam_subnet.example]
}


resource "bloxone_ipam_address" "example" {
address = "10.1.0.1"
address = "10.1.0.5"
space = bloxone_ipam_ip_space.example.id

# Other optional fields
Expand Down
9 changes: 5 additions & 4 deletions examples/resources/bloxone_ipam_address/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ resource "bloxone_ipam_subnet" "example" {
}

resource "bloxone_ipam_range" "example" {
address = "10.1.0.10"
end = "10.1.0.20"
space = bloxone_ipam_ip_space.example.id
start = "10.1.0.10"
end = "10.1.0.20"
space = bloxone_ipam_ip_space.example.id
depends_on = [bloxone_ipam_subnet.example]
}


resource "bloxone_ipam_address" "example" {
address = "10.1.0.1"
address = "10.1.0.5"
space = bloxone_ipam_ip_space.example.id

# Other optional fields
Expand Down
3 changes: 0 additions & 3 deletions internal/service/ipam/api_subnet_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,6 @@ func TestAccSubnetResource_DdnsSendUpdates(t *testing.T) {
}

func TestAccSubnetResource_DdnsTtlPercent(t *testing.T) {

t.Skip("Test Skipped due to issue with TTL percentage update [NORTHSTAR-12587]")

var resourceName = "bloxone_ipam_subnet.test_ddns_ttl_percent"
var v ipam.Subnet
spaceName := acctest.RandomNameWithPrefix("ip-space")
Expand Down
2 changes: 1 addition & 1 deletion templates/data-sources.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ subcategory: "{{- $group := index (split .Name "_") 1 -}}
{{- else if eq $group "td" -}}
Threat Defense
{{- else if eq $group "federation" -}}
IPAM Federation"
IPAM Federation
{{- end -}}"
description: |-
{{ .Description | plainmarkdown | trimspace | prefixlines " " }}
Expand Down
2 changes: 1 addition & 1 deletion templates/resources.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ subcategory: "{{- $group := index (split .Name "_") 1 -}}
{{- else if eq $group "td" -}}
Threat Defense
{{- else if eq $group "federation" -}}
IPAM Federation"
IPAM Federation
{{- end -}}"
description: |-
{{ .Description | plainmarkdown | trimspace | prefixlines " " }}
Expand Down
Loading