Merge pull request #25615 from suzuki-shunsuke/docs/fix-output-format-of-state-show
docs: fix the output format of state show command
This commit is contained in:
commit
0a837003e9
|
@ -39,13 +39,15 @@ The example below shows a `packet_device` resource named `worker`:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ terraform state show 'packet_device.worker'
|
$ terraform state show 'packet_device.worker'
|
||||||
id = 6015bg2b-b8c4-4925-aad2-f0671d5d3b13
|
# packet_device.worker:
|
||||||
billing_cycle = hourly
|
resource "packet_device" "worker" {
|
||||||
created = 2015-12-17T00:06:56Z
|
billing_cycle = "hourly"
|
||||||
facility = ewr1
|
created = "2015-12-17T00:06:56Z"
|
||||||
hostname = prod-xyz01
|
facility = "ewr1"
|
||||||
locked = false
|
hostname = "prod-xyz01"
|
||||||
...
|
id = "6015bg2b-b8c4-4925-aad2-f0671d5d3b13"
|
||||||
|
locked = false
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Example: Show a Module Resource
|
## Example: Show a Module Resource
|
||||||
|
|
Loading…
Reference in New Issue