-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate documentation and version release
- Loading branch information
1 parent
402619c
commit d46e30e
Showing
5 changed files
with
77 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.3.1 | ||
0.3.2 |
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,47 @@ | ||
--- | ||
page_title: "looker_public_ip_addresses Data Source - terraform-provider-looker" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
# looker_public_ip_addresses (Data Source) | ||
|
||
## Example Usage | ||
```terraform | ||
data "looker_public_ip_addresses" "ips" { | ||
} | ||
resource "local_file" "file" { | ||
filename = "test.txt" | ||
content = data.looker_public_ip_addresses.ips.public_ips[0] | ||
} | ||
``` | ||
## Example Output | ||
```terraform | ||
% terraform show | ||
# data.looker_public_ip_addresses.ips: | ||
data "looker_public_ip_addresses" "ips" { | ||
id = "-" | ||
public_ips = [ | ||
"52.200.xxx.xxx", | ||
"52.200.xx.xxx", | ||
"34.200.xxx.xxx", | ||
] | ||
} | ||
# local_file.file: | ||
resource "local_file" "file" { | ||
content = "52.200.xxx.xxx" | ||
... | ||
filename = "test.txt" | ||
id = "196847cc15ee92bdd41d2b078ecd7bd68780a3a2" | ||
} | ||
``` | ||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `public_ips` (List of String) Egress IP addresses. |
8 changes: 8 additions & 0 deletions
8
examples/data-sources/looker_public_ip_addresses/data-source.tf
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,8 @@ | ||
data "looker_public_ip_addresses" "ips" { | ||
|
||
} | ||
|
||
resource "local_file" "file" { | ||
filename = "test.txt" | ||
content = data.looker_public_ip_addresses.ips.public_ips[0] | ||
} |
18 changes: 18 additions & 0 deletions
18
examples/data-sources/looker_public_ip_addresses/data-source.tfshow
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,18 @@ | ||
% terraform show | ||
# data.looker_public_ip_addresses.ips: | ||
data "looker_public_ip_addresses" "ips" { | ||
id = "-" | ||
public_ips = [ | ||
"52.200.xxx.xxx", | ||
"52.200.xx.xxx", | ||
"34.200.xxx.xxx", | ||
] | ||
} | ||
|
||
# local_file.file: | ||
resource "local_file" "file" { | ||
content = "52.200.xxx.xxx" | ||
... | ||
filename = "test.txt" | ||
id = "196847cc15ee92bdd41d2b078ecd7bd68780a3a2" | ||
} |
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