Skip to content

Commit b8b34c4

Browse files
geethasathyamurthyhkantare
authored andcommitted
resubmitted v1360 release udpated docs
1 parent 13bf96c commit b8b34c4

File tree

3 files changed

+35
-25
lines changed

3 files changed

+35
-25
lines changed

website/docs/d/is_instance_network_interfaces.html.markdown

Lines changed: 34 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ subcategory: "VPC infrastructure"
33
layout: "ibm"
44
page_title: "IBM : is_instance_network_interfaces"
55
description: |-
6-
Get information about NetworkInterfaceCollection
6+
Get information about Network Interface collection
77
88
---
99

1010
# ibm_is_instance_network_interfaces
1111

12-
Provides a read-only data source for NetworkInterfaceCollection. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax.
12+
Retrieve information about a network interface collection. For more information, about network interace collection, see [Network interface configurations](https://cloud.ibm.com/docs/vpc?topic=vpc-managing-nic-for-bare-metal-servers#nic-configs).
1313

14-
## Example Usage
14+
## Example usage
1515

16-
```hcl
16+
```terraform
1717
resource "ibm_is_vpc" "example" {
1818
name = "example-vpc"
1919
}
@@ -54,44 +54,54 @@ data "ibm_is_instance_network_interfaces" "example" {
5454
}
5555
```
5656

57-
## Argument Reference
57+
## Argument reference
5858

59-
The following arguments are supported:
59+
Review the argument reference that you can specify for your data source.
6060

61-
- `instance_name` - (Required, string) The name of instance.
61+
- `instance_name` - (Required, string) The name of an instance.
6262

6363
## Attribute Reference
6464

65-
In addition to all arguments above, the following attributes are exported:
65+
In addition to all argument references listed, you can access the following attribute references after your data source is created.
6666

6767
- `network_interfaces` - (List) Collection of network interfaces. Nested `network_interfaces` blocks have the following structure:
6868
- `allow_ip_spoofing` - (Boolean) Indicates whether source IP spoofing is allowed on this interface. If false, source IP spoofing is prevented on this interface. If true, source IP spoofing is allowed on this interface.
6969
- `created_at` - (String) The date and time that the network interface was created.
70-
- `floating_ips` - (List) The floating IPs associated with this network interface. Nested `floating_ips` blocks have the following structure:
71-
- `address` - (String) The globally unique IP address.
72-
- `crn` - (String) The CRN for this floating IP.
73-
- `deleted` - (List) If present, this property indicates the referenced resource has been deleted and providessome supplementary information. Nested `deleted` blocks have the following structure:
74-
- `more_info` - (String) Link to documentation about deleted resources.
75-
- `href` - (String) The URL for this floating IP.
76-
- `id` - (String) The unique identifier for this floating IP.
77-
- `name` - (String) The unique user-defined name for this floating IP.
70+
- `floating_ips` - (List) The floating IPs associated with this network interface.
71+
72+
Nested scheme for `floating_ips`:
73+
- `address` - (String) The globally unique IP address.
74+
- `crn` - (String) The CRN for this floating IP.
75+
- `deleted` - (List) If present, this property indicates the referenced resource has been deleted and providessome supplementary information.
76+
77+
Nested scheme for `deleted`:
78+
- `more_info` - (String) Link to documentation about deleted resources.
79+
- `href` - (String) The URL for this floating IP.
80+
- `id` - (String) The unique identifier for this floating IP.
81+
- `name` - (String) The unique user-defined name for this floating IP.
7882
- `href` - (String) The URL for this network interface.
7983
- `id` - (String) The unique identifier for this network interface.
8084
- `name` - (String) The user-defined name for this network interface.
8185
- `port_speed` - (Integer) The network interface port speed in Mbps.
8286
- `primary_ipv4_address` - (String) The primary IPv4 address.
8387
- `resource_type` - (String) The resource type.
84-
- `security_groups` - (List) Collection of security groups. Nested `security_groups` blocks have the following structure:
85-
- `crn` - (String) The security group's CRN.
86-
- `deleted` - (List) If present, this property indicates the referenced resource has been deleted and providessome supplementary information. Nested `deleted` blocks have the following structure:
87-
- `more_info` - (String) Link to documentation about deleted resources.
88-
- `href` - (String) The security group's canonical URL.
89-
- `id` - (String) The unique identifier for this security group.
90-
- `name` - (String) The user-defined name for this security group. Names must be unique within the VPC the security group resides in.
88+
- `security_groups` - (List) Collection of security groups.
89+
90+
Nested scheme for `security_groups`:
91+
- `crn` - (String) The security group's CRN.
92+
- `deleted` - (List) If present, this property indicates the referenced resource has been deleted and providessome supplementary information.
93+
94+
Nested scheme for `deleted`:
95+
- `more_info` - (String) Link to documentation about deleted resources.
96+
- `href` - (String) The security group's canonical URL.
97+
- `id` - (String) The unique identifier for this security group.
98+
- `name` - (String) The user-defined name for this security group. Names must be unique within the VPC the security group resides in.
9199
- `status` - (String) The status of the network interface.
92100
- `subnet` - (List) The associated subnet. Nested `subnet` blocks have the following structure:
93101
- `crn` - (String) The CRN for this subnet.
94-
- `deleted` - (List) If present, this property indicates the referenced resource has been deleted and providessome supplementary information. Nested `deleted` blocks have the following structure:
102+
- `deleted` - (List) If present, this property indicates the referenced resource has been deleted and providessome supplementary information.
103+
104+
Nested `deleted` blocks have the following structure:
95105
- `more_info` - (String) Link to documentation about deleted resources.
96106
- `href` - (String) The URL for this subnet.
97107
- `id` - (String) The unique identifier for this subnet.

website/docs/d/is_instance_template.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ data "ibm_is_instance_template" "instancetemplate" {
1818
}
1919
2020
```
21+
2122
```terraform
2223
data "ibm_is_instance_template" "instancetemplate" {
2324
identifier = "xxxxx-xxxxx-xxxxxx-xxxxx"

website/docs/r/is_instance.html.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ resource "ibm_is_instance" "testacc_instance" {
6666
delete = "15m"
6767
}
6868
}
69-
7069
```
7170

7271
### Sample for creating an instance with custom security group rules.

0 commit comments

Comments
 (0)