Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 574 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 574 Bytes

Terraform Provider for Netcup SCP API

This is a Terraform provider for the Netcup SCP webservice.

Getting started

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"
}