Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Use a package of configuration called an orb.
orbs:
# Declare a dependency on the welcome-orb
welcome: circleci/welcome-orb@0.4.1
# Orchestrate or schedule a set of jobs
workflows:
# Name the workflow "welcome"
welcome:
# Run the welcome/run job in its own container
jobs:
- welcome/run
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
![](https://img.shields.io/badge/Stability-Experimental-red.svg)

This terraform code configures a Ubuntu virtual machine on packet and configures BIRD for BGP routing.

This repository is [Experimental](https://github.com/packethost/standards/blob/master/experimental-statement.md) meaning that it's based on untested ideas or techniques and not yet established or finalized or involves a radically new and innovative style! This means that support is best effort (at best!) and we strongly encourage you to NOT use this in production.

### Requirements

Expand Down
1 change: 1 addition & 0 deletions instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ resource "packet_reserved_ip_block" "elastic_ip" {
resource "packet_device" "hosts" {
depends_on = ["packet_ssh_key.ssh-key"]


hostname = "${format("%s-%02d", var.sites[count.index], count.index)}"

plan = "t1.small.x86"
Expand Down