Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
created folder for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tradel committed Jun 29, 2020
1 parent 6eda820 commit aa46990
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/simple.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
variable "refresh_token" {
type = string
}

module "aws_accesstier" {
source = "tradel/banyan-accesstier/aws"
region = "us-east-1"
vpc_id = "vpc-0e73afd7c24062f0a"
public_subnet_ids = ["subnet-09ef9206ca406ffe7", "subnet-0bcb18d59e3ff3cc7"]
private_subnet_ids = ["subnet-00e393f22c3f09e16", "subnet-0dfce8195de704b65"]
cluster_name = "us-west1"
site_name = "my-banyan-site"
site_domain_names = ["*.bnndemos.com"]
ssh_key_name = "my-ssh-key"
redirect_http_to_https = true
refresh_token = var.refresh_token
}

0 comments on commit aa46990

Please sign in to comment.