correct spelling mistakes (#13979)
This commit is contained in:
parent
1d1d44b7be
commit
be265479a9
|
@ -841,7 +841,7 @@ func TestApply_planVars(t *testing.T) {
|
||||||
|
|
||||||
// we should be able to apply a plan file with no other file dependencies
|
// we should be able to apply a plan file with no other file dependencies
|
||||||
func TestApply_planNoModuleFiles(t *testing.T) {
|
func TestApply_planNoModuleFiles(t *testing.T) {
|
||||||
// temprary data directory which we can remove between commands
|
// temporary data directory which we can remove between commands
|
||||||
td, err := ioutil.TempDir("", "tf")
|
td, err := ioutil.TempDir("", "tf")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
|
|
@ -194,7 +194,7 @@ Usage: terraform init [options] [SOURCE] [PATH]
|
||||||
|
|
||||||
This is the first command that should be run for any new or existing
|
This is the first command that should be run for any new or existing
|
||||||
Terraform configuration per machine. This sets up all the local data
|
Terraform configuration per machine. This sets up all the local data
|
||||||
necessary to run Terraform that is typically not comitted to version
|
necessary to run Terraform that is typically not committed to version
|
||||||
control.
|
control.
|
||||||
|
|
||||||
This command is always safe to run multiple times. Though subsequent runs
|
This command is always safe to run multiple times. Though subsequent runs
|
||||||
|
|
|
@ -1200,7 +1200,7 @@ func (m *Meta) backend_C_r_S_unchanged(
|
||||||
s := sMgr.State()
|
s := sMgr.State()
|
||||||
|
|
||||||
// it's possible for a backend to be unchanged, and the config itself to
|
// it's possible for a backend to be unchanged, and the config itself to
|
||||||
// have changed by moving a paramter from the config to `-backend-config`
|
// have changed by moving a parameter from the config to `-backend-config`
|
||||||
// In this case we only need to update the Hash.
|
// In this case we only need to update the Hash.
|
||||||
if c != nil && s.Backend.Hash != c.Hash {
|
if c != nil && s.Backend.Hash != c.Hash {
|
||||||
s.Backend.Hash = c.Hash
|
s.Backend.Hash = c.Hash
|
||||||
|
|
|
@ -133,7 +133,7 @@ func (c *StateMvCommand) Run(args []string) int {
|
||||||
}
|
}
|
||||||
|
|
||||||
// addableResult takes the result from a filter operation and returns what to
|
// addableResult takes the result from a filter operation and returns what to
|
||||||
// call State.Add with. The reason we do this is beacuse in the module case
|
// call State.Add with. The reason we do this is because in the module case
|
||||||
// we must add the list of all modules returned versus just the root module.
|
// we must add the list of all modules returned versus just the root module.
|
||||||
func (c *StateMvCommand) addableResult(results []*terraform.StateFilterResult) interface{} {
|
func (c *StateMvCommand) addableResult(results []*terraform.StateFilterResult) interface{} {
|
||||||
switch v := results[0].Value.(type) {
|
switch v := results[0].Value.(type) {
|
||||||
|
|
|
@ -352,7 +352,7 @@ func (w *Walker) walkVertex(v Vertex, info *walkerVertex) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if we have updated dependencies. This can happen if the
|
// Check if we have updated dependencies. This can happen if the
|
||||||
// dependencies were satisfied exactly prior to an Update occuring.
|
// dependencies were satisfied exactly prior to an Update occurring.
|
||||||
// In that case, we'd like to take into account new dependencies
|
// In that case, we'd like to take into account new dependencies
|
||||||
// if possible.
|
// if possible.
|
||||||
info.DepsLock.Lock()
|
info.DepsLock.Lock()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# ####
|
# ####
|
||||||
|
|
||||||
# Current Availiable Datacenter Regions
|
# Current Available Datacenter Regions
|
||||||
|
|
||||||
# As of 05-07-2016
|
# As of 05-07-2016
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ provider "google" {
|
||||||
region = "${var.region1}"
|
region = "${var.region1}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create the two networks we want to join. They must have seperate, internal
|
# Create the two networks we want to join. They must have separate, internal
|
||||||
# ranges.
|
# ranges.
|
||||||
resource "google_compute_network" "network1" {
|
resource "google_compute_network" "network1" {
|
||||||
name = "network1"
|
name = "network1"
|
||||||
|
|
|
@ -115,7 +115,7 @@ func expandArray(m map[string]string, prefix string) []interface{} {
|
||||||
|
|
||||||
func expandMap(m map[string]string, prefix string) map[string]interface{} {
|
func expandMap(m map[string]string, prefix string) map[string]interface{} {
|
||||||
// Submaps may not have a '%' key, so we can't count on this value being
|
// Submaps may not have a '%' key, so we can't count on this value being
|
||||||
// here. If we don't have a count, just procede as if we have have a map.
|
// here. If we don't have a count, just proceed as if we have have a map.
|
||||||
if count, ok := m[prefix+"%"]; ok && count == "0" {
|
if count, ok := m[prefix+"%"]; ok && count == "0" {
|
||||||
return map[string]interface{}{}
|
return map[string]interface{}{}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ initial files, loading any remote state, downloading modules, etc.
|
||||||
|
|
||||||
This is the first command that should be run for any new or existing
|
This is the first command that should be run for any new or existing
|
||||||
Terraform configuration per machine. This sets up all the local data
|
Terraform configuration per machine. This sets up all the local data
|
||||||
necessary to run Terraform that is typically not comitted to version
|
necessary to run Terraform that is typically not committed to version
|
||||||
control.
|
control.
|
||||||
|
|
||||||
This command is always safe to run multiple times. Though subsequent runs
|
This command is always safe to run multiple times. Though subsequent runs
|
||||||
|
|
|
@ -53,7 +53,7 @@ You are now ready to use your personal token to manage builds and configurations
|
||||||
## Connecting Configurations
|
## Connecting Configurations
|
||||||
|
|
||||||
Once you have linked a Bitbucket installation to your account or organization,
|
Once you have linked a Bitbucket installation to your account or organization,
|
||||||
you are ready to begin creating Packer Builds and Terraform Enviroments linked
|
you are ready to begin creating Packer Builds and Terraform Environments linked
|
||||||
to your desired Bitbucket Cloud repository.
|
to your desired Bitbucket Cloud repository.
|
||||||
|
|
||||||
Terraform Enterprise environments are linked to individual GitHub repositories.
|
Terraform Enterprise environments are linked to individual GitHub repositories.
|
||||||
|
|
|
@ -50,7 +50,7 @@ Navigate to https://atlas.hashicorp.com/settings/connections and click on “Con
|
||||||
## Connecting Configurations
|
## Connecting Configurations
|
||||||
|
|
||||||
Once you have linked a GitLab installation to your account or organization,
|
Once you have linked a GitLab installation to your account or organization,
|
||||||
you are ready to begin creating Packer Builds and Terraform Enviroments linked
|
you are ready to begin creating Packer Builds and Terraform Environments linked
|
||||||
to your desired GitLab repository.
|
to your desired GitLab repository.
|
||||||
|
|
||||||
Terraform Enterprise environments are linked to individual GitLab repositories.
|
Terraform Enterprise environments are linked to individual GitLab repositories.
|
||||||
|
|
|
@ -47,7 +47,7 @@ The following arguments are supported:
|
||||||
* `method` - (Required) Balancing procedure Can be `ROUND_ROBIN` or `LEAST_CONNECTIONS`
|
* `method` - (Required) Balancing procedure Can be `ROUND_ROBIN` or `LEAST_CONNECTIONS`
|
||||||
* `datacenter` - (Optional) Location of desired 1and1 datacenter. Can be `DE`, `GB`, `US` or `ES`
|
* `datacenter` - (Optional) Location of desired 1and1 datacenter. Can be `DE`, `GB`, `US` or `ES`
|
||||||
* `persistence` - (Optional) True/false defines whether persistence should be turned on/off
|
* `persistence` - (Optional) True/false defines whether persistence should be turned on/off
|
||||||
* `persistence_time` - (Optional) Persistance duration in seconds
|
* `persistence_time` - (Optional) Persistence duration in seconds
|
||||||
* `health_check_test` - (Optional) Can be `TCP` or`ICMP`.
|
* `health_check_test` - (Optional) Can be `TCP` or`ICMP`.
|
||||||
* `health_check_test_interval` - (Optional)
|
* `health_check_test_interval` - (Optional)
|
||||||
* `health_check_test_path` - (Optional)
|
* `health_check_test_path` - (Optional)
|
||||||
|
|
|
@ -19,7 +19,7 @@ with the `-lock` flag but it is not recommended.
|
||||||
|
|
||||||
If acquiring the lock is taking longer than expected, Terraform will output
|
If acquiring the lock is taking longer than expected, Terraform will output
|
||||||
a status message. If Terraform doesn't output a message, state locking is
|
a status message. If Terraform doesn't output a message, state locking is
|
||||||
still occuring if your backend supports it.
|
still occurring if your backend supports it.
|
||||||
|
|
||||||
Not all [backends](/docs/backends) support locking. Please view the list
|
Not all [backends](/docs/backends) support locking. Please view the list
|
||||||
of [backend types](/docs/backends/types) for details on whether a backend
|
of [backend types](/docs/backends/types) for details on whether a backend
|
||||||
|
|
Loading…
Reference in New Issue