All Projects → ajbosco → terraform-provider-segment

ajbosco / terraform-provider-segment

Licence: MIT license
A Terraform provider for Segment

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to terraform-provider-segment

Trackie
A Chrome extension to enhance debugging of some frequently-used tag management platforms (Google Tag Manager, Tealium, Commanders Act, DTM) in combination with some frequently-used tags (Google Analytics, Google Analytics 4, GA Audiences, Ddm, Criteo, Adobe Analytics/Omniture, Floodlight, Comscore, Facebook, Bluekai, Youbora, Kinesis, Webtrekk, …
Stars: ✭ 23 (-20.69%)
Mutual labels:  segment, segmentio
Fasthash
Go package porting the standard hashing algorithms to a more efficient implementation.
Stars: ✭ 163 (+462.07%)
Mutual labels:  segment
React Native Analytics Segment Io
A React Native module for Segment Analytics
Stars: ✭ 72 (+148.28%)
Mutual labels:  segment
Swift project
原OC项目用swift实现,纯swift项目,可作为学习swift的demo,包含多个自定义控件,并且进行封装网络请求库,结构清晰。
Stars: ✭ 133 (+358.62%)
Mutual labels:  segment
Analytics Vue
The hassle-free way to integrate analytics into your Vue application.
Stars: ✭ 87 (+200%)
Mutual labels:  segment
Analytics React
[DEPRECATED AND UNSUPPORTED] The hassle-free way to integrate analytics into your React application.
Stars: ✭ 146 (+403.45%)
Mutual labels:  segment
Events
Go package for routing, formatting and publishing events produced by a program.
Stars: ✭ 57 (+96.55%)
Mutual labels:  segment
Unity.library.eppz.geometry
2D Geometry for Unity. Suited for everyday polygon hassle. Polygon clipping, polygon winding direction, polygon area, polygon centroid, centroid of multiple polygons, line intersection, point-line distance, segment intersection, polygon-point containment, polygon triangulation, polygon Voronoi diagram, polygon offset, polygon outline, polygon buffer, polygon union, polygon substraction, polygon boolean operations, and more. It is a polygon fest.
Stars: ✭ 198 (+582.76%)
Mutual labels:  segment
Textanalyzer
A text analyzer which is based on machine learning,statistics and dictionaries that can analyze text. So far, it supports hot word extracting, text classification, part of speech tagging, named entity recognition, chinese word segment, extracting address, synonym, text clustering, word2vec model, edit distance, chinese word segment, sentence similarity,word sentiment tendency, name recognition, idiom recognition, placename recognition, organization recognition, traditional chinese recognition, pinyin transform.
Stars: ✭ 162 (+458.62%)
Mutual labels:  segment
Evergreen
🌲 Evergreen React UI Framework by Segment
Stars: ✭ 11,340 (+39003.45%)
Mutual labels:  segment
Jxsegmentedview
A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)
Stars: ✭ 1,905 (+6468.97%)
Mutual labels:  segment
Nsq Go
Go package providing tools for building NSQ clients, servers and middleware.
Stars: ✭ 90 (+210.34%)
Mutual labels:  segment
Typewriter
Type safety + intellisense for your Segment analytics
Stars: ✭ 146 (+403.45%)
Mutual labels:  segment
Segment
A tool to segment text based on frequencies and the Viterbi algorithm "#TheBoyWhoLived" => ['#', 'The', 'Boy', 'Who', 'Lived']
Stars: ✭ 78 (+168.97%)
Mutual labels:  segment
Stats
Go package for abstracting stats collection
Stars: ✭ 164 (+465.52%)
Mutual labels:  segment
Conf
Go package for loading program configuration from multiple sources.
Stars: ✭ 70 (+141.38%)
Mutual labels:  segment
Gse
Go efficient multilingual NLP and text segmentation; support english, chinese, japanese and other. Go 高性能多语言 NLP 和分词
Stars: ✭ 1,695 (+5744.83%)
Mutual labels:  segment
Piecewise linear fit py
fit piecewise linear data for a specified number of line segments
Stars: ✭ 141 (+386.21%)
Mutual labels:  segment
Analytics
UNMAINTAINED! - Complete Google Analytics, Mixpanel, KISSmetrics (and more) integration for Meteor
Stars: ✭ 211 (+627.59%)
Mutual labels:  segment
Elf Parser
Lightweight elf binary parser with no external dependencies - Sections, Symbols, Relocations, Segments
Stars: ✭ 172 (+493.1%)
Mutual labels:  segment

terraform-provider-segment

A Terraform provider for Segment

Usage

Create and manage Segment sources

resource "segment_source" "test_source" {
  source_name = "your-source"
  catalog_name = "catalog/sources/javascript"
}

Create and manage Segment destinations

resource "segment_destination" "test_destination" {
  source_name = "test_source"
  destination_name = "google-analytics"
  connection_mode = "CLOUD"
  enabled = false
  configs = [{
      name = "workspaces/your-workspace/sources/your-source/destinations/google-analytics/config/trackingId"
      type = "string"
      value = "your-tracking-id"
  }]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].