Difference between revisions of "Terraform data source: terraform remote state"

From wikieduonline
Jump to navigation Jump to search
 
Line 62: Line 62:
 
== Related ==
 
== Related ==
 
* <code>[[terraform.tfstate]]</code>
 
* <code>[[terraform.tfstate]]</code>
* [[Explain the benefits of state]]
 
 
* Buildin [[provider]]
 
* Buildin [[provider]]
  

Latest revision as of 16:57, 19 April 2023

terraform_remote_state

Example Usage (remote Backend)[edit]

data "terraform_remote_state" "vpc" {
  backend = "remote"

  config = {
    organization = "hashicorp"
    workspaces = {
      name = "vpc-prod"
    }
  }
}
# Terraform >= 0.12
resource "aws_instance" "foo" {
  # ...
  subnet_id = data.terraform_remote_state.vpc.outputs.subnet_id
} 

# Terraform <= 0.11
resource "aws_instance" "foo" {
  # ...
  subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
}

Example Usage (local Backend)[edit]

data "terraform_remote_state" "vpc" {
  backend = "local"

  config = {
    path = "..."
  }
}

# Terraform >= 0.12
resource "aws_instance" "foo" {
  # ...
  subnet_id = data.terraform_remote_state.vpc.outputs.subnet_id
}

# Terraform <= 0.11
resource "aws_instance" "foo" {
  # ...
  subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
}

Errors[edit]

Activities[edit]

Related[edit]

See also[edit]

Advertising: