-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
new resource:azurerm_mobile_network_attached_data_network
; new datasource: azurerm_mobile_network_attached_data_network
#22168
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a847640
new resource:`azurerm_mobile_network_attached_data_network`; new data…
ziyeqf bc798ba
update per comment
ziyeqf ae2e89a
update per comment
ziyeqf e4050fd
rename `network_address_port_translation_configuration`
ziyeqf 66664cf
update per comments
ziyeqf e616b3e
update code
ziyeqf ee50a66
update code
ziyeqf 22776d9
update code
ziyeqf 05e5221
update code
ziyeqf feaf426
Merge branch 'main' into tengzh/mn_adn
ziyeqf b8f6385
refresh vendor
ziyeqf 102f052
lint
ziyeqf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
279 changes: 279 additions & 0 deletions
279
internal/services/mobilenetwork/mobile_network_attached_data_network_data_source.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,279 @@ | ||
package mobilenetwork | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"time" | ||
|
||
"github.com/hashicorp/go-azure-helpers/lang/pointer" | ||
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema" | ||
"github.com/hashicorp/go-azure-helpers/resourcemanager/location" | ||
"github.com/hashicorp/go-azure-helpers/resourcemanager/tags" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/mobilenetwork/2022-11-01/attacheddatanetwork" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/mobilenetwork/2022-11-01/packetcoredataplane" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" | ||
) | ||
|
||
type AttachedDataNetworkDataSource struct{} | ||
|
||
type AttachedDataNetworkDataSourceModel struct { | ||
MobileNetworkDataNetworkName string `tfschema:"mobile_network_data_network_name"` | ||
MobileNetworkPacketCoreDataPlaneId string `tfschema:"mobile_network_packet_core_data_plane_id"` | ||
DnsAddresses []string `tfschema:"dns_addresses"` | ||
Location string `tfschema:"location"` | ||
NaptConfiguration []NaptConfigurationDataSourceModel `tfschema:"network_address_port_translation"` | ||
Tags map[string]interface{} `tfschema:"tags"` | ||
UserEquipmentAddressPoolPrefix []string `tfschema:"user_equipment_address_pool_prefixes"` | ||
UserEquipmentStaticAddressPoolPrefix []string `tfschema:"user_equipment_static_address_pool_prefixes"` | ||
UserPlaneAccessIPv4Address string `tfschema:"user_plane_access_ipv4_address"` | ||
UserPlaneAccessIPv4Gateway string `tfschema:"user_plane_access_ipv4_gateway"` | ||
UserPlaneAccessIPv4Subnet string `tfschema:"user_plane_access_ipv4_subnet"` | ||
UserPlaneAccessName string `tfschema:"user_plane_access_name"` | ||
} | ||
|
||
type NaptConfigurationDataSourceModel struct { | ||
PinholeLimits int64 `tfschema:"pinhole_maximum_number"` | ||
IcmpPinholeTimeout int64 `tfschema:"icmp_pinhole_timeout_in_seconds"` | ||
TcpPinholeTimeout int64 `tfschema:"tcp_pinhole_timeout_in_seconds"` | ||
UdpPinholeTimeout int64 `tfschema:"udp_pinhole_timeout_in_seconds"` | ||
PortRange []PortRangeDataSourceModel `tfschema:"port_range"` | ||
TcpReuseMinimumHoldTime int64 `tfschema:"tcp_port_reuse_minimum_hold_time_in_seconds"` | ||
UdpReuseMinimumHoldTime int64 `tfschema:"udp_port_reuse_minimum_hold_time_in_seconds"` | ||
} | ||
|
||
type PortRangeDataSourceModel struct { | ||
Maximum int64 `tfschema:"maximum"` | ||
Minimum int64 `tfschema:"minimum"` | ||
} | ||
|
||
var _ sdk.DataSource = AttachedDataNetworkDataSource{} | ||
|
||
func (r AttachedDataNetworkDataSource) ResourceType() string { | ||
return "azurerm_mobile_network_attached_data_network" | ||
} | ||
|
||
func (r AttachedDataNetworkDataSource) ModelObject() interface{} { | ||
return &AttachedDataNetworkDataSourceModel{} | ||
} | ||
|
||
func (r AttachedDataNetworkDataSource) IDValidationFunc() pluginsdk.SchemaValidateFunc { | ||
return attacheddatanetwork.ValidateAttachedDataNetworkID | ||
} | ||
|
||
func (r AttachedDataNetworkDataSource) Arguments() map[string]*pluginsdk.Schema { | ||
return map[string]*pluginsdk.Schema{ | ||
"mobile_network_data_network_name": { | ||
Type: pluginsdk.TypeString, | ||
Required: true, | ||
ValidateFunc: validation.StringIsNotEmpty, | ||
}, | ||
|
||
"mobile_network_packet_core_data_plane_id": { | ||
Type: pluginsdk.TypeString, | ||
Required: true, | ||
ValidateFunc: packetcoredataplane.ValidatePacketCoreDataPlaneID, | ||
}, | ||
} | ||
} | ||
|
||
func (r AttachedDataNetworkDataSource) Attributes() map[string]*pluginsdk.Schema { | ||
return map[string]*pluginsdk.Schema{ | ||
|
||
"location": commonschema.LocationComputed(), | ||
|
||
"dns_addresses": { | ||
Type: pluginsdk.TypeList, | ||
Computed: true, | ||
Elem: &pluginsdk.Schema{ | ||
Type: pluginsdk.TypeString, | ||
}, | ||
}, | ||
|
||
"network_address_port_translation": { | ||
Type: pluginsdk.TypeList, | ||
Computed: true, | ||
Elem: &pluginsdk.Resource{ | ||
Schema: map[string]*pluginsdk.Schema{ | ||
"pinhole_maximum_number": { | ||
Type: pluginsdk.TypeInt, | ||
Optional: true, | ||
}, | ||
|
||
"icmp_pinhole_timeout_in_seconds": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
|
||
"tcp_pinhole_timeout_in_seconds": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
|
||
"udp_pinhole_timeout_in_seconds": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
|
||
"port_range": { | ||
Type: pluginsdk.TypeList, | ||
Computed: true, | ||
Elem: &pluginsdk.Resource{ | ||
Schema: map[string]*pluginsdk.Schema{ | ||
"maximum": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
|
||
"minimum": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
|
||
"tcp_port_reuse_minimum_hold_time_in_seconds": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
|
||
"udp_port_reuse_minimum_hold_time_in_seconds": { | ||
Type: pluginsdk.TypeInt, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
|
||
"user_plane_access_name": { | ||
Type: pluginsdk.TypeString, | ||
Computed: true, | ||
}, | ||
|
||
"user_plane_access_ipv4_address": { | ||
Type: pluginsdk.TypeString, | ||
Computed: true, | ||
}, | ||
|
||
"user_plane_access_ipv4_subnet": { | ||
Type: pluginsdk.TypeString, | ||
Computed: true, | ||
}, | ||
|
||
"user_plane_access_ipv4_gateway": { | ||
Type: pluginsdk.TypeString, | ||
Computed: true, | ||
}, | ||
|
||
"user_equipment_address_pool_prefixes": { | ||
Type: pluginsdk.TypeList, | ||
Computed: true, | ||
Elem: &pluginsdk.Schema{ | ||
Type: pluginsdk.TypeString, | ||
}, | ||
}, | ||
|
||
"user_equipment_static_address_pool_prefixes": { | ||
Type: pluginsdk.TypeList, | ||
Computed: true, | ||
Elem: &pluginsdk.Schema{ | ||
Type: pluginsdk.TypeString, | ||
}, | ||
}, | ||
|
||
"tags": commonschema.TagsDataSource(), | ||
} | ||
} | ||
|
||
func (r AttachedDataNetworkDataSource) Read() sdk.ResourceFunc { | ||
return sdk.ResourceFunc{ | ||
Timeout: 5 * time.Minute, | ||
Func: func(ctx context.Context, metadata sdk.ResourceMetaData) error { | ||
var inputModel AttachedDataNetworkModel | ||
if err := metadata.Decode(&inputModel); err != nil { | ||
return fmt.Errorf("decoding: %+v", err) | ||
} | ||
|
||
client := metadata.Client.MobileNetwork.AttachedDataNetworkClient | ||
|
||
packetCoreDataPlaneId, err := packetcoredataplane.ParsePacketCoreDataPlaneID(inputModel.MobileNetworkPacketCoreDataPlaneId) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
id := attacheddatanetwork.NewAttachedDataNetworkID(packetCoreDataPlaneId.SubscriptionId, packetCoreDataPlaneId.ResourceGroupName, packetCoreDataPlaneId.PacketCoreControlPlaneName, packetCoreDataPlaneId.PacketCoreDataPlaneName, inputModel.MobileNetworkDataNetworkName) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
resp, err := client.Get(ctx, id) | ||
if err != nil { | ||
return fmt.Errorf("retrieving %s: %+v", id, err) | ||
} | ||
|
||
state := AttachedDataNetworkDataSourceModel{ | ||
MobileNetworkDataNetworkName: id.AttachedDataNetworkName, | ||
MobileNetworkPacketCoreDataPlaneId: packetcoredataplane.NewPacketCoreDataPlaneID(id.SubscriptionId, id.ResourceGroupName, id.PacketCoreControlPlaneName, id.PacketCoreDataPlaneName).ID(), | ||
} | ||
|
||
if model := resp.Model; model != nil { | ||
props := model.Properties | ||
|
||
state.Location = location.Normalize(model.Location) | ||
state.DnsAddresses = props.DnsAddresses | ||
state.NaptConfiguration = flattenDataSourceNaptConfiguration(props.NaptConfiguration) | ||
state.UserEquipmentAddressPoolPrefix = pointer.From(props.UserEquipmentAddressPoolPrefix) | ||
state.UserEquipmentStaticAddressPoolPrefix = pointer.From(props.UserEquipmentStaticAddressPoolPrefix) | ||
state.UserPlaneAccessIPv4Address = pointer.From(props.UserPlaneDataInterface.IPv4Address) | ||
state.UserPlaneAccessIPv4Gateway = pointer.From(props.UserPlaneDataInterface.IPv4Gateway) | ||
state.UserPlaneAccessIPv4Subnet = pointer.From(props.UserPlaneDataInterface.IPv4Subnet) | ||
state.UserPlaneAccessName = pointer.From(props.UserPlaneDataInterface.Name) | ||
state.Tags = tags.Flatten(model.Tags) | ||
} | ||
|
||
metadata.SetID(id) | ||
|
||
return metadata.Encode(&state) | ||
}, | ||
} | ||
} | ||
|
||
func flattenDataSourceNaptConfiguration(input *attacheddatanetwork.NaptConfiguration) []NaptConfigurationDataSourceModel { | ||
if input == nil { | ||
return []NaptConfigurationDataSourceModel{} | ||
} | ||
output := NaptConfigurationDataSourceModel{} | ||
|
||
output.PinholeLimits = pointer.From(input.PinholeLimits) | ||
|
||
if input.PinholeTimeouts != nil { | ||
output.IcmpPinholeTimeout = pointer.From(input.PinholeTimeouts.Icmp) | ||
output.TcpPinholeTimeout = pointer.From(input.PinholeTimeouts.Tcp) | ||
output.UdpPinholeTimeout = pointer.From(input.PinholeTimeouts.Udp) | ||
} | ||
|
||
output.PortRange = flattenDataSourcePortRange(input.PortRange) | ||
|
||
if input.PortReuseHoldTime != nil { | ||
output.TcpReuseMinimumHoldTime = pointer.From(input.PortReuseHoldTime.Tcp) | ||
output.UdpReuseMinimumHoldTime = pointer.From(input.PortReuseHoldTime.Udp) | ||
} | ||
|
||
return []NaptConfigurationDataSourceModel{output} | ||
} | ||
|
||
func flattenDataSourcePortRange(input *attacheddatanetwork.PortRange) []PortRangeDataSourceModel { | ||
if input == nil { | ||
return []PortRangeDataSourceModel{} | ||
} | ||
|
||
output := PortRangeDataSourceModel{} | ||
|
||
output.Maximum = pointer.From(input.MaxPort) | ||
|
||
output.Minimum = pointer.From(input.MinPort) | ||
|
||
return []PortRangeDataSourceModel{output} | ||
} |
51 changes: 51 additions & 0 deletions
51
internal/services/mobilenetwork/mobile_network_attached_data_network_data_source_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package mobilenetwork_test | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-provider-azurerm/internal/acceptance" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/acceptance/check" | ||
) | ||
|
||
type MobileNetworkAttachedDataNetworkDataSource struct{} | ||
|
||
func TestAccMobileNetworkAttachedDataNetworkDataSource_basic(t *testing.T) { | ||
data := acceptance.BuildTestData(t, "azurerm_mobile_network_attached_data_network", "test") | ||
d := MobileNetworkAttachedDataNetworkDataSource{} | ||
data.DataSourceTest(t, []acceptance.TestStep{ | ||
{ | ||
Config: d.basic(data), | ||
Check: acceptance.ComposeTestCheckFunc( | ||
check.That(data.ResourceName).Key(`location`).Exists(), | ||
check.That(data.ResourceName).Key(`dns_addresses.0`).HasValue("1.1.1.1"), | ||
check.That(data.ResourceName).Key(`user_equipment_address_pool_prefixes.0`).HasValue("2.4.1.0/24"), | ||
check.That(data.ResourceName).Key(`user_equipment_static_address_pool_prefixes.0`).HasValue("2.4.2.0/24"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.pinhole_maximum_number`).HasValue("65536"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.icmp_pinhole_timeout_in_seconds`).HasValue("30"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.tcp_pinhole_timeout_in_seconds`).HasValue("100"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.udp_pinhole_timeout_in_seconds`).HasValue("39"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.port_range.0.maximum`).HasValue("49999"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.port_range.0.minimum`).HasValue("1024"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.tcp_port_reuse_minimum_hold_time_in_seconds`).HasValue("120"), | ||
check.That(data.ResourceName).Key(`network_address_port_translation.0.udp_port_reuse_minimum_hold_time_in_seconds`).HasValue("60"), | ||
check.That(data.ResourceName).Key(`user_plane_access_name`).HasValue("test"), | ||
check.That(data.ResourceName).Key(`user_plane_access_ipv4_address`).HasValue("10.204.141.4"), | ||
check.That(data.ResourceName).Key(`user_plane_access_ipv4_gateway`).HasValue("10.204.141.1"), | ||
check.That(data.ResourceName).Key(`user_plane_access_ipv4_subnet`).HasValue("10.204.141.0/24"), | ||
check.That(data.ResourceName).Key(`tags.%`).HasValue("1"), | ||
), | ||
}, | ||
}) | ||
} | ||
|
||
func (r MobileNetworkAttachedDataNetworkDataSource) basic(data acceptance.TestData) string { | ||
return fmt.Sprintf(` | ||
%s | ||
|
||
data "azurerm_mobile_network_attached_data_network" "test" { | ||
mobile_network_data_network_name = azurerm_mobile_network_attached_data_network.test.mobile_network_data_network_name | ||
mobile_network_packet_core_data_plane_id = azurerm_mobile_network_attached_data_network.test.mobile_network_packet_core_data_plane_id | ||
} | ||
`, MobileNetworkAttachedDataNetworkResource{}.complete(data)) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we rename this to
name
, or do we want to rename the corresponding field in the model fromName
toMobileNetworkDataNetworkName
to be consistent?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was marked resolved but I don't see any discussion or explanation, can we have some context?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On reflection, given that this needs to be the same value as the corresponding Mobile Network Data Network's name value, we should in fact use the ID for that here and extract the name from it. This ensures the value is consistent, provides additional validation, and the value can be pulled from a reference allowing an explicit dependency between the resources.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason to use name instead of id is the id format of
azurerm_mobile_network_attached_data_network
does not containmobileNetworkName
, the response/model does not contain it either... Then we cannot set the id inread
funcattached_data_network_id:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}
data_network_id:
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is the dependency between these resources, black arrow means dependency, yellow arrow means id path. As there is a
N:1
relation betweenazurerm_mobile_network_site
andazurerm_mobile_network_packet_core_control_plane
, itt seems there is no way get the id ofazurerm_mobile_network_data_network
. WDYT?