# terraform-provider-runscope **Repository Path**: mirrors_reMarkable/terraform-provider-runscope ## Basic Information - **Project Name**: terraform-provider-runscope - **Description**: Terraform runscope provider - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-06 - **Last Updated**: 2025-10-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Terraform Runscope Provider The Runscope provider is used to interact with the resources supported by [Runscope](https://runscope.com/). ## Installing Release 0.9.0 contains **breaking changes** in the resources. If you use the provider of versions prior to 0.8.0, first upgrade it to 0.8.0, rename deprecated properties and then upgrade further. Starting from version 0.9.0 provider doesn't support terraform 0.11.x and early. ### terraform 0.13+ Add into your Terraform configuration this code: ```hcl-terraform terraform { required_providers { runscope = { source = "sport24ru/runscope" } } } ``` and run `terraform init` ### terraform 0.12 1. Download archive with the latest version of provider for your operating system from [Github releases page](https://github.com/sport24ru/terraform-provider-runscope/releases). 2. Unpack provider to `$HOME/.terraform.d/plugins`, i.e. ``` unzip terraform-provider-runscope_vX.Y.Z_linux_amd64.zip terraform-provider-runscope_* -d $HOME/.terraform.d/plugins/ ``` 3. Init your terraform project ``` terraform init ``` ## Usage Read the [documentation on Terraform Registry site](https://registry.terraform.io/providers/sport24ru/runscope/latest/docs).