Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/go_modules/github.com/hashicorp…
Browse files Browse the repository at this point in the history
…/terraform-plugin-framework-timetypes-0.5.0
  • Loading branch information
unasra authored Nov 5, 2024
2 parents ec678a6 + b64b24f commit e3db008
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/resources/anycast_host.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@ resource "bloxone_anycast_host" "example" {
# Adding the anycast config profile and enabling BGP routing protocol
anycast_config_refs = [
{
anycast_config_name = bloxone_anycast_config.test_onprem_hosts.name
anycast_config_name = bloxone_anycast_config.example.name
routing_protocols = ["BGP", "OSPF"]
}
]
# Adding the BGP configuration
config_bgp = {
asn = "6500"
asn_text = "6500"
holddown_secs = 180
neighbors = [
{
Expand Down
3 changes: 1 addition & 2 deletions examples/resources/bloxone_anycast_host/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ resource "bloxone_anycast_host" "example" {
# Adding the anycast config profile and enabling BGP routing protocol
anycast_config_refs = [
{
anycast_config_name = bloxone_anycast_config.test_onprem_hosts.name
anycast_config_name = bloxone_anycast_config.example.name
routing_protocols = ["BGP", "OSPF"]
}
]

# Adding the BGP configuration
config_bgp = {
asn = "6500"
asn_text = "6500"
holddown_secs = 180
neighbors = [
{
Expand Down
1 change: 1 addition & 0 deletions internal/service/ipam/api_dhcp_host_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ func (m *DhcpHostModel) Flatten(ctx context.Context, from *ipam.Host, diags *dia
if m == nil {
*m = DhcpHostModel{}
}
m.Id = flex.FlattenStringPointer(from.Id)
m.Address = flex.FlattenStringPointer(from.Address)
m.AnycastAddresses = flex.FlattenFrameworkListString(ctx, from.AnycastAddresses, diags)
m.AssociatedServer = FlattenIpamsvcHostAssociatedServer(ctx, from.AssociatedServer, diags)
Expand Down

0 comments on commit e3db008

Please sign in to comment.