Skip to content

Commit

Permalink
Merge branch 'fix-docs' into 'master'
Browse files Browse the repository at this point in the history
fix(docs): fix refs to repos

See merge request rackn/terraform-provider-drp!106
  • Loading branch information
galthaus committed Oct 20, 2023
2 parents 0558ce5 + 54daeb1 commit dc00212
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ $ make build
v0.13+ requres use of the required_providers stanza for your your OS and architecture! Then it will infer the cache path. You must copy your build output to the correct cache path.

```sh
$ mkdir -p .terraform/plugins/rackn/drp/2.0/linux_amd64
$ ln -s bin/linux/amd64/terraform-provider-drp .terraform/plugins/extras.rackn.io/rackn/drp/2.0.0/linux_amd64
$ mkdir -p .terraform/plugins/rackn/drp/2.3.1/linux_amd64
$ ln -s bin/linux/amd64/terraform-provider-drp .terraform/plugins/rackn/drp/2.3.1/linux_amd64
```

## Tests
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ terraform {
required_version = ">= 0.13.0"
required_providers {
drp = {
version = "2.0.0"
source = "extras.rackn.io/rackn/drp"
version = "2.3.1"
source = "rackn/drp"
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions examples/example.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# RackN 2020
# RackN 2023
# Digital Rebar v4.4+ Terraform v0.13+ Provider

terraform {
required_version = ">= 0.13.0"
required_providers {
drp = {
version = "2.0.0"
source = "extras.rackn.io/rackn/drp"
version = "2.3.1"
source = "rackn/drp"
}
}
}
Expand All @@ -31,10 +31,10 @@ resource "drp_machine" "one_random_node" {
# deallocate_workflow = Name of workflow to set when the machine is released back to the pool
# setting this overrides the defaults defined by the DRP admin
# timeout = time string for max wait time (default to 5m)
#
#
# List of public SSH keys to be installed (written as Param.access-keys)
# authorized_keys = ["ssh key"]
#
#
# List of profiles to apply to node (must already exist)
# add_profiles = ["mandy", "clause"]
#
Expand Down

0 comments on commit dc00212

Please sign in to comment.