Skip to content

Commit

Permalink
Merge pull request #167 from Cox-Automotive/update-version-in-readme
Browse files Browse the repository at this point in the history
updates the example version in the docs
  • Loading branch information
americk0 authored May 6, 2022
2 parents 7156436 + ecd015d commit e3495d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Use the navigation to the left to read about the available resources.
# Configure the ALKS Terraform Provider
provider "alks" {
url = "https://alks.foo.com/rest"
version = "~> 1.4.3"
version = ">= 2.2.0"
}
# Create an ALKS IAM role
Expand All @@ -35,7 +35,7 @@ Static credentials can be provided via an `access_key`, `secret_key` and `token`
```hcl
provider "alks" {
url = "https://alks.foo.com/rest"
version = "~> 1.4.3"
version = ">= 2.2.0"
access_key = "accesskey"
secret_key = "secretkey"
token = "sessiontoken"
Expand All @@ -49,7 +49,7 @@ Terraform file:
```hcl
provider "alks" {
url = "https://alks.foo.com/rest"
version = "~> 1.4.3"
version = ">= 2.2.0"
}
```

Expand All @@ -68,7 +68,7 @@ You can use an AWS credentials file to specify your credentials. The default loc
```hcl
provider "alks" {
url = "https://alks.foo.com/rest"
version = "~> 1.4.3"
version = ">= 2.2.0"
shared_credentials_file = "/Users/my_user/.aws/credentials"
profile = "foo"
}
Expand All @@ -86,7 +86,7 @@ Your ALKS provider block can look just like this:
```hcl
provider "alks" {
url = "https://alks.foo.com/rest"
version = "~> 1.4.3"
version = ">= 2.2.0"
}
```

Expand All @@ -95,7 +95,7 @@ Since Machine Identities work with Instance Profile Metadata directly, it can be
```hcl
provider "alks" {
url = "https://alks.foo.com/rest"
version = "~> 1.4.3"
version = ">= 2.2.0"
assume_role {
role_arn = "arn:aws:iam::112233445566:role/acct-managed/JenkinsPRODAccountTrust"
}
Expand Down

0 comments on commit e3495d3

Please sign in to comment.