terraform-provider-nifcloud

command module
v1.14.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 1, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

README

Terraform Provider for NIFCLOUD

Build

The Terraform NIFCLOUD provider is a plugin for Terraform that allows for lifecycle management of NIFCLOUD resources.


Using the provider

Usage Example

terraform {
  required_providers {
    nifcloud = {
      source = "nifcloud/nifcloud"
      version = ">= 1.0.0"
    }
  }
}

provider "nifcloud" {
  region = "jp-east-1"
}

resource "nifcloud_key_pair" "deployer" {
  key_name   = "deployerkey"
  public_key = "Base64-encoded public key string"
}

resource "nifcloud_instance" "web" {
  image_id = "221"
  key_name = nifcloud_key_pair.deployer.key_name

  network_interface {
    network_id = "net-COMMON_PRIVATE"
  }
}

Have a look at the reference docs for more information on the supported resources and data sources.

Requirements

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL