Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rincedd/terraform-provider-netcup-scp
Terraform provider for the Netcup SCP webservice.
https://github.com/rincedd/terraform-provider-netcup-scp
Last synced: 6 days ago
JSON representation
Terraform provider for the Netcup SCP webservice.
- Host: GitHub
- URL: https://github.com/rincedd/terraform-provider-netcup-scp
- Owner: rincedd
- License: mpl-2.0
- Created: 2021-01-24T13:33:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T22:01:24.000Z (almost 2 years ago)
- Last Synced: 2024-06-19T04:21:39.913Z (5 months ago)
- Language: Go
- Homepage: https://registry.terraform.io/providers/rincedd/netcup-scp
- Size: 79.1 KB
- Stars: 9
- Watchers: 2
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Terraform Provider for Netcup SCP API
This is a [Terraform](https://terraform.io) provider for the [Netcup](https://www.netcup.de/) SCP [webservice](https://www.netcup-wiki.de/wiki/Server_Control_Panel_(SCP)#Webservice).
## Getting started
```terraform
terraform {
required_providers {
netcup-ccp = {
source = "rincedd/netcup-scp"
}
}
}provider "netcup-scp" {
login_name = "123456" # Netcup customer number
password = "secret" # SCP webservice password
}data "netcup_vserver" "my_server" {
server_name = "v12345678901234567"
}```