mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 04:01:50 -04:00
1.0 KiB
1.0 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| terraform | Terraform: terraform_remote_state | docs-terraform-datasource-remote-state | Accesses state meta data from a remote backend. |
remote_state
Retrieves state meta data from a remote backend
Example Usage
data "terraform_remote_state" "vpc" {
backend = "atlas"
config {
name = "hashicorp/vpc-prod"
}
}
resource "aws_instance" "foo" {
# ...
subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
}
Argument Reference
The following arguments are supported:
backend- (Required) The remote backend to use.config- (Optional) The configuration of the remote backend.- Remote state config docs can be found here
Attributes Reference
The following attributes are exported:
backend- See Argument Reference above.config- See Argument Reference above.output- The values of the configuredoutputsfor the root module referenced by the remote state.