Skip to content

Commit

Permalink
Merge pull request splunk#3 from splunk/initial_release_updates
Browse files Browse the repository at this point in the history
Initial release updates
  • Loading branch information
greatestusername-splunk authored Sep 16, 2021
2 parents 151c9ac + 5826522 commit b376905
Show file tree
Hide file tree
Showing 2,103 changed files with 703,501 additions and 8 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEST?=$$(go list ./... | grep -v 'vendor')
HOSTNAME=splunk.com
NAMESPACE=edu
NAMESPACE=splunk
NAME=synthetics
BINARY=terraform-provider-${NAME}
VERSION=0.1.1
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Splunk Synthetics Terraform Provider

**Until this description is changed this is not a complete provider. Currently it may not even work. Proceed at your own risk.**

This repository is an **alpha* Terraform provider for [Splunk Synthetics (formerly Rigor™)](https://monitoring.rigor.com/). It currently contains CRUD operations for HTTP (Uptime) Checks and Real Browser Checks with some caveats:

- Currently Real Browser Checks cannot have `steps` or `javascript_files` added via Public API and thus are not included in this provider.
Expand All @@ -15,7 +13,8 @@ This repo and the companion [Synthetics Golang client](https://github.com/splunk

## Installation

Currently this provider is in testing and is not published to the Terraform Provider Registry.
Whenever possible install from the official Terraform Registry:
https://registry.terraform.io/providers/splunk/synthetics/latest

To install this provider locally follow the directions for installing [In-House Providers](https://www.terraform.io/docs/cloud/run/install-software.html#in-house-providers).

Expand Down
8 changes: 4 additions & 4 deletions examples/main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_providers {
synthetics = {
version = "0.0.1"
source = "splunk.com/edu/synthetics"
version = "0.1.3"
source = "splunk/synthetics"
}
}
}
Expand Down Expand Up @@ -58,7 +58,7 @@ resource "synthetics_create_http_check" "http_check" {
notify_who {
sms = false
email = true
custom_user_email = "aperson@splunk.com"
custom_user_email = "example_person@splunk.com"
call = false
}
notify_who {
Expand Down Expand Up @@ -146,7 +146,7 @@ resource "synthetics_create_browser_check" "browser_check" {
notify_who {
sms = false
email = true
custom_user_email = "aperson@splunk.com"
custom_user_email = "example_person@splunk.com"
call = false
}
notify_who {
Expand Down
11 changes: 11 additions & 0 deletions vendor/cloud.google.com/go/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b376905

Please sign in to comment.