docs/remote_state: Update docs to use data instead of resource (#8293)
This commit is contained in:
parent
8d8b186cc3
commit
c61f04c89d
|
@ -31,7 +31,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "artifactory"
|
backend = "artifactory"
|
||||||
config {
|
config {
|
||||||
username = "SheldonCooper"
|
username = "SheldonCooper"
|
||||||
|
|
|
@ -25,7 +25,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "atlas"
|
backend = "atlas"
|
||||||
config {
|
config {
|
||||||
name = "bigbang/example"
|
name = "bigbang/example"
|
||||||
|
|
|
@ -25,7 +25,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "consul"
|
backend = "consul"
|
||||||
config {
|
config {
|
||||||
path = "full/path"
|
path = "full/path"
|
||||||
|
|
|
@ -22,7 +22,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "etcd"
|
backend = "etcd"
|
||||||
config {
|
config {
|
||||||
path = "path/to/terraform.tfstate"
|
path = "path/to/terraform.tfstate"
|
||||||
|
|
|
@ -23,7 +23,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "http"
|
backend = "http"
|
||||||
config {
|
config {
|
||||||
address = "http://my.rest.api.com"
|
address = "http://my.rest.api.com"
|
||||||
|
|
|
@ -31,7 +31,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "s3"
|
backend = "s3"
|
||||||
config {
|
config {
|
||||||
bucket = "terraform-state-prod"
|
bucket = "terraform-state-prod"
|
||||||
|
|
|
@ -21,7 +21,7 @@ terraform remote config \
|
||||||
## Example Referencing
|
## Example Referencing
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "swift"
|
backend = "swift"
|
||||||
config {
|
config {
|
||||||
path = "random/path"
|
path = "random/path"
|
||||||
|
|
Loading…
Reference in New Issue