Difference between revisions of "Terraform backend: remote"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 1: Line 1:
 
https://www.terraform.io/language/settings/backends/remote
 
https://www.terraform.io/language/settings/backends/remote
 
* Since  [[v0.11.13]]
 
* Since  [[v0.11.13]]
 +
 +
 +
terraform {
 +
      backend "remote" {
 +
        # The name of your Terraform Cloud organization.
 +
        organization = "example-organization"
 +
 +
        # The name of the Terraform Cloud workspace to store Terraform state files in.
 +
        workspaces {
 +
          name = "example-workspace"
 +
        }
 +
      }
 +
    }
  
 
== Related ==
 
== Related ==

Revision as of 19:35, 7 February 2024

https://www.terraform.io/language/settings/backends/remote


terraform {
      backend "remote" {
        # The name of your Terraform Cloud organization.
        organization = "example-organization"
        # The name of the Terraform Cloud workspace to store Terraform state files in.
        workspaces {
          name = "example-workspace"
        }
      }
    }

Related

terraform_remote_state

See also

Advertising: