Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@awlsring/cdktf-surreal-backend

Package Overview
Dependencies
1
Maintainers
1
Versions
77
Issues
File Explorer

Advanced tools

@awlsring/cdktf-surreal-backend

A package that vends a construct to setup the surreal backend in CDKTF

    1.0.62latest
    GitHub

Version published
Maintainers
1
Weekly downloads
693
decreased by-32.98%

Weekly downloads

Changelog

Source

v1.0.62

1.0.62 (2023-03-28)

Readme

Source

cdktf-surreal-backend

This is library to create a CDKTF construct for terraform-backend-surreal. This library vends a single construct, SurrealBackend, which extends the default HttpBackend construct to make instantiation of this easier.

Usage

Example

import { TerraformStack } from "cdktf"; import { SurrealBackend } from '@awlsring/cdktf-surreal-backend'; export class MyStack extends TerraformStack { constructor(scope: Construct, name: string, props: MyStackProps) { super(scope, name); const backend = new SurrealBackend(this, 'Backend', { address: 'https://localhost:8032', project: "homelab", stack: "infra", username: "terraform", password: "alligator3", }); ... // other stuff } }

Construct Properties:

  • address: The address your backend sever is reachable at.
  • project: The project name to use for this stack.
  • stack: The stack name to use for this stack. stacks names must be unique across a project.
  • username: The username to use for authentication, configured in the server's config.yaml file
  • password: The password to use for authentication, configured in the server's config.yaml file

Keywords

FAQs

Last updated on 28 Mar 2023

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc