terraform {
required_providers {
vex = {
source = "broswen/vex"
version = "1.0.0"
}
}
}
provider "vex" {
api_token = "<api token>"
}
resource "vex_account" "test_account" {
name = "test account"
description = "test account"
}
resource "vex_project" "test_project" {
account_id = vex_account.test_account.id
name = "test project"
description = "test project"
}
resource "vex_flag" "feature_1" {
project_id = vex_project.test_project.id
account_id = vex_account.test_account.id
key = "feature1"
type = "STRING"
value = "feature one"
}
resource "vex_flag" "feature_2" {
project_id = vex_project.test_project.id
account_id = vex_account.test_account.id
key = "feature2"
type = "NUMBER"
value = "123.45"
}
-
Notifications
You must be signed in to change notification settings - Fork 0
broswen/terraform-provider-vex
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Terraform Provider for Vex
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published