Skip to content

Latest commit

 

History

History
95 lines (63 loc) · 2.21 KB

File metadata and controls

95 lines (63 loc) · 2.21 KB

Terraform Provider Plugin

Usage

Please, refer to official documentation.

Development

  1. Install protobuf.

  2. Install protoc-gen-terraform v1.0.0+.

    go install github.com/gravitational/protoc-gen-terraform@latest

  3. Install Terraform v1.1.0+. Alternatively, you can use tfenv. Please note that on Mac M1 you need to specify TFENV_ARCH (ex: TFENV_ARCH=arm64 tfenv install 1.1.6).

  4. Clone the plugin:

    git clone git@github.com:gravitational/teleport-plugins
  5. Build and install the plugin:

    cd teleport-plugins/terraform
    make install
  6. Run tests:

    make test

    Note: Some tests won't pass without a valid teleport binary, enterprise license, etc. See Testing to see how to provide these values to the tests locally.

Updating the provider

Run:

make gen-tfschema

This will generate types_tfschema.go from a current API .proto file, and regenerate the provider code.

Playing with examples locally

  1. Start Teleport.

    teleport start
    
  2. Create Terraform user and role:

    tctl create example/terraform.yaml
    tctl auth sign --format=file --user=terraform --out=/tmp/terraform-identity --ttl=10h
    
  3. Create main.tf file:

    cp example/main.tf.example example/main.tf
    

    Please note that target identity file was exported to /tmp/terraform-identity on previous step. If you used another location, please change in in main.tf.

  4. Create sample resources:

    cp example/user.tf.example example/user.tf
    cp example/role.tf.example example/role.tf
    cp example/provision_token.tf.example example/provision_token.tf
    

    Please note that some resources require preliminary setup steps.

  5. Apply changes:

    make apply
    
  6. Make changes to .tf files and run:

    make reapply
    
  7. Clean up:

    make destroy