|
| 1 | +# phpipam_address |
| 2 | + |
| 3 | +The `phpipam_address` data source allows one to get information about a specific |
| 4 | +IP address within PHPIPAM. Use this address to get general information about a |
| 5 | +specific IP address such as its host name, description and more. |
| 6 | + |
| 7 | +Lookups for IP addresses can only happen at this time via its entry in the |
| 8 | +database, or the IP address itself. Future versions of this resource, when such |
| 9 | +features become generally available in the PHPIPAM API, will allow lookup based |
| 10 | +on host name, allowing for better ability for this resource to discover IP |
| 11 | +addresses that have been pre-assigned for a specific resource. |
| 12 | + |
| 13 | +**Example:** |
| 14 | + |
| 15 | +```hcl |
| 16 | +data "phpipam_address" "address" { |
| 17 | + ip_address = "10.10.1.1" |
| 18 | +} |
| 19 | +
|
| 20 | +output "address_description" { |
| 21 | + value = data.phpipam_address.address.description |
| 22 | +} |
| 23 | +``` |
| 24 | + |
| 25 | +**Example With `subnet_id` when multiple subnets share the same ip ranges :** |
| 26 | + |
| 27 | +```hcl |
| 28 | +data "phpipam_address" "address" { |
| 29 | + ip_address = "10.10.1.1" |
| 30 | + subnet_id = 3 |
| 31 | +} |
| 32 | +
|
| 33 | +output "address_description" { |
| 34 | + value = data.phpipam_address.address.description |
| 35 | +} |
| 36 | +``` |
| 37 | + |
| 38 | +**Example With `description`:** |
| 39 | + |
| 40 | +```hcl |
| 41 | +data "phpipam_address" "address" { |
| 42 | + subnet_id = 3 |
| 43 | + description = "Customer 1" |
| 44 | +} |
| 45 | +
|
| 46 | +output "address_description" { |
| 47 | + value = data.phpipam_address.address.description |
| 48 | +} |
| 49 | +``` |
| 50 | + |
| 51 | +**Example With `custom_field_filter`:** |
| 52 | + |
| 53 | +```hcl |
| 54 | +data "phpipam_address" "address" { |
| 55 | + subnet_id = 3 |
| 56 | +
|
| 57 | + custom_field_filter { |
| 58 | + custom_CustomTestAddresses = ".*terraform.*" |
| 59 | + } |
| 60 | +} |
| 61 | +
|
| 62 | +output "address_description" { |
| 63 | + value = data.phpipam_address.address.description |
| 64 | +} |
| 65 | +``` |
| 66 | + |
| 67 | +## Argument Reference |
| 68 | + |
| 69 | +The data source takes the following parameters: |
| 70 | + |
| 71 | +- `address_id` - The ID of the IP address in the PHPIPAM database. |
| 72 | +- `ip_address` - The actual IP address in PHPIPAM. |
| 73 | +- `subnet_id` - The ID of the subnet that the address resides in. This is |
| 74 | + required to search on the `description` or `hostname` field. Optional if |
| 75 | + multiple subnets have the same ip ranges ( multiple subnets behind NAT ) |
| 76 | +- `description` - The description of the IP address. `subnet_id` is required |
| 77 | + when using this field. |
| 78 | +- `hostname` - The host name of the IP address. `subnet_id` is required when |
| 79 | + using this field. |
| 80 | +- `custom_field_filter` - A map of custom fields to search for. The filter |
| 81 | + values are regular expressions that follow the RE2 syntax for which you can |
| 82 | + find documentation [here](https://github.com/google/re2/wiki/Syntax). All |
| 83 | + fields need to match for the match to succeed. |
| 84 | + |
| 85 | +⚠️ **NOTE:** `description`, `hostname`, and `custom_field_filter` fields return |
| 86 | +the first match found without any warnings. If you are looking to return |
| 87 | +multiple addresses, combine this data source with the |
| 88 | +[`phpipam_addresses`](./addresses.md) data source. |
| 89 | + |
| 90 | +⚠️ **NOTE:** An empty or unspecified `custom_field_filter` value is the |
| 91 | +equivalent to a regular expression that matches everything, and hence will |
| 92 | +return the first address it sees in the subnet. Custom fileds must contain mandatory |
| 93 | +prefix `custom_`. |
| 94 | + |
| 95 | +Arguments are processed in the following order of precedence: |
| 96 | + |
| 97 | +- `address_id` |
| 98 | +- `ip_address` |
| 99 | +- `subnet_id`, and either one of `description`, `hostname`, or |
| 100 | + `custom_field_filter` |
| 101 | + |
| 102 | +## Attribute Reference |
| 103 | + |
| 104 | +The following attributes are exported: |
| 105 | + |
| 106 | +- `address_id` - The ID of the IP address in the PHPIPAM database. |
| 107 | +- `ip_address` - the IP address. |
| 108 | +- `subnet_id` - The database ID of the subnet this IP address belongs to. |
| 109 | +- `is_gateway` - `true` if this IP address has been designated as a gateway. |
| 110 | +- `description` - The description provided to this IP address. |
| 111 | +- `hostname` - The hostname supplied to this IP address. |
| 112 | +- `owner` - The owner name provided to this IP address. |
| 113 | +- `mac_address` - The MAC address provided to this IP address. |
| 114 | +- `state_tag_id` - The tag ID in the database for the IP address' specific |
| 115 | + state. **NOTE:** This is currently represented as an integer but may change |
| 116 | + to the specific string representation at a later time. |
| 117 | +- `skip_ptr_record` - `true` if PTR records are not being created for this IP |
| 118 | + address. |
| 119 | +- `ptr_record_id` - The ID of the associated PTR record in the PHPIPAM |
| 120 | + database. |
| 121 | +- `device_id` - The ID of the associated device in the PHPIPAM database. |
| 122 | +- `switch_port_label` - A string port label that is associated with this |
| 123 | + address. |
| 124 | +- `note` - The note supplied to this IP address. |
| 125 | +- `last_seen` - The last time this IP address answered ping probes. |
| 126 | +- `exclude_ping` - `true` if this address is excluded from ping probes. |
| 127 | +- `edit_date` - The last time this resource was modified. |
| 128 | +- `custom_fields` - A key/value map of custom fields for this address. |
0 commit comments