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

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 6: Line 6:
 
== Example Usage (remote Backend) ==
 
== Example Usage (remote Backend) ==
  
<pre>data "terraform_remote_state" "vpc" {
+
data "terraform_remote_state" "vpc" {
  backend = "remote"
+
  [[backend]] = "remote"
 +
 +
  config = {
 +
    organization = "hashicorp"
 +
    workspaces = {
 +
      name = "vpc-prod"
 +
    }
 +
  }
 +
}
  
  config = {
+
# Terraform >= 0.12
    organization = "hashicorp"
+
resource "aws_instance" "foo" {
    workspaces = {
+
  # ...
      name = "vpc-prod"
+
  subnet_id = data.terraform_remote_state.vpc.outputs.subnet_id
    }
+
}  
  }
+
}
+
# Terraform <= 0.11
 
+
resource "aws_instance" "foo" {
# Terraform >= 0.12
+
  # ...
resource "aws_instance" "foo" {
+
  subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
  # ...
+
}
  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}"
 
}
 
</pre>
 
  
 
== Example Usage (local Backend)==
 
== Example Usage (local Backend)==

Revision as of 15:45, 15 March 2023

terraform_remote_state

Example Usage (remote Backend)

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)

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

Related

See also

Advertising: