Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ismirlia committed Jan 27, 2025
1 parent 6be47d1 commit cf47cdb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions website/docs/d/pi_network_interface.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ In addition to all argument reference list, you can access the following attribu
- `ip_address` - (String) The ip address of this network interface.
- `mac_address` - (String) The mac address of the network interface.
- `name` - (String) Name of the network interface (not unique or indexable).
- `network_security_group_ids` - (List) List of network security groups that the network interface is a member of.
- `network_interface_id` - (String) The unique identifier of the network interface.
- `status` - (String) The status of the network address group.
- `user_tags` - (List) List of user tags attached to the resource.
5 changes: 3 additions & 2 deletions website/docs/d/pi_network_interfaces.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,19 @@ Review the argument references that you can specify for your data source.
In addition to all argument reference listed, you can access the following attribute references after your data source is created.

- `id` - (String) The unique identifier of the pi_network_interfaces.
- `interfaces` - (List) network Interfaces.
- `interfaces` - (List) Network interfaces.

Nested scheme for `interfaces`:
- `crn` - (String) The network interface's crn.
- `id` - (String) The unique network interface id.
- `instance` - (List) The attached instance to this Network Interface.
- `instance` - (List) The attached instance to this network interface.

Nested scheme for `instance`:
- `href` - (String) Link to instance resource.
- `instance_id` - (String) The attached instance id.
- `ip_address` - (String) The ip address of this network interface.
- `mac_address` - (String) The mac address of the network interface.
- `name` - (String) Name of the network interface (not unique or indexable).
- `network_security_group_ids` - (List) List of network security groups that the network interface is a member of.
- `status` - (String) The status of the network address group.
- `user_tags` - (List) List of user tags attached to the resource.
7 changes: 4 additions & 3 deletions website/docs/r/pi_network_interface.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The `ibm_pi_network` provides the following [Timeouts](https://www.terraform.io/
Review the argument references that you can specify for your resource.

- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
- `pi_instance_id` - (Optional, String) If supplied populated it attaches to the InstanceID, if empty detaches from InstanceID.
- `pi_instance_id` - (Optional, String) If supplied populated it attaches to the instance ID, if empty detaches from the instance ID.
- `pi_ip_address` - (Optional, String) The requested IP address of this network interface.
- `pi_name` - (Optional, String) Name of the network interface.
- `pi_network_id` - (Required, String) network id.
Expand All @@ -61,7 +61,7 @@ In addition to all argument reference list, you can access the following attribu

- `crn` - (String) The network interface's crn.
- `id` - (String) The unique identifier of the network interface resource. The ID is composed of `<cloud_instance_id>/<network_id>/<network_interface_id>`.
- `instance` - (List) The attached instance to this Network Interface.
- `instance` - (List) The attached instance to this network interface.

Nested scheme for `instance`:
- `href` - (String) Link to instance resource.
Expand All @@ -70,7 +70,8 @@ In addition to all argument reference list, you can access the following attribu
- `mac_address` - (String) The mac address of the network interface.
- `name` - (String) Name of the network interface (not unique or indexable).
- `network_interface_id` - (String) The unique identifier of the network interface.
- `network_security_group_id` - (String) ID of the Network Security Group the network interface will be added to.
- `network_security_group_id` - (Deprecated, String) ID of the network security group the network interface will be added to. Please use network_security_group_ids instead.
- `network_security_group_ids` - (List) List of network security groups that the network interface is a member of.
- `status` - (String) The status of the network address group.

## Import
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/pi_network_security_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Example usage:
Review the argument references that you can specify for your resource.

- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
- `pi_name` - (Required, String) The name of the Network Security Group.
- `pi_name` - (Required, String) The name of the network security group.
- `pi_user_tags` - (Optional, List) A list of tags.

## Attribute Reference
Expand Down Expand Up @@ -84,7 +84,7 @@ In addition to all argument reference list, you can access the following attribu
- `remote` - (List) List of remote.

Nested schema for `remote`:
- `id` - (String) The id of the remote network Address group or network security group the rules apply to. Not required for default-network-address-group.
- `id` - (String) The id of the remote network address group or network security group the rules apply to. Not required for default-network-address-group.
- `type` - (String) The type of remote group the rules apply to. Supported values are: `network-security-group`, `network-address-group`, `default-network-address-group`.
- `source_port` - (List) List of source port

Expand Down

0 comments on commit cf47cdb

Please sign in to comment.