All Projects → paultyng → terraform-provider-twitter

paultyng / terraform-provider-twitter

Licence: MPL-2.0 license
No description or website provided.

Programming Languages

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

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

Bigdata Playground
A complete example of a big data application using : Kubernetes (kops/aws), Apache Spark SQL/Streaming/MLib, Apache Flink, Scala, Python, Apache Kafka, Apache Hbase, Apache Parquet, Apache Avro, Apache Storm, Twitter Api, MongoDB, NodeJS, Angular, GraphQL
Stars: ✭ 177 (+637.5%)
Mutual labels:  twitter-api
Egg Mode
a twitter api crate for rust
Stars: ✭ 249 (+937.5%)
Mutual labels:  twitter-api
terraform-provider-mysql
Terraform MySQL provider – This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html
Stars: ✭ 59 (+145.83%)
Mutual labels:  terraform-provider
Twitter To Sqlite
Save data from Twitter to a SQLite database
Stars: ✭ 203 (+745.83%)
Mutual labels:  twitter-api
Harpy
A Twitter app built with Flutter
Stars: ✭ 211 (+779.17%)
Mutual labels:  twitter-api
twitter-status
Twitter Status Web Component
Stars: ✭ 59 (+145.83%)
Mutual labels:  twitter-api
Midare
🕒 ツイートを使って生活習慣の乱れを可視化するWebアプリ
Stars: ✭ 153 (+537.5%)
Mutual labels:  twitter-api
terraform-provider-oneview
Automates the provisioning of physical infrastructure from a private cloud using templates from HPE OneView with Terraform
Stars: ✭ 46 (+91.67%)
Mutual labels:  terraform-provider
Twitterdelete
💀 Delete your old, unpopular tweets.
Stars: ✭ 231 (+862.5%)
Mutual labels:  twitter-api
TwitterScraper
Scrape a User's Twitter data! Bypass the 3,200 tweet API limit for a User!
Stars: ✭ 80 (+233.33%)
Mutual labels:  twitter-api
Jekyll Twitter Plugin
A Liquid tag plugin for the Jekyll blogging engine that embeds Tweets, Timelines and more from Twitter API
Stars: ✭ 204 (+750%)
Mutual labels:  twitter-api
100daysofcode Twitter Bot
Twitter bot for #100DaysOfCode
Stars: ✭ 214 (+791.67%)
Mutual labels:  twitter-api
terraform-provider-tsuru
Terraform provider for tsuru
Stars: ✭ 17 (-29.17%)
Mutual labels:  terraform-provider
Twitter Bot
Node js twitter bot to send auto welcome message for your new followers
Stars: ✭ 184 (+666.67%)
Mutual labels:  twitter-api
terraform-provider-external
Utility provider that exists to provide an interface between Terraform and external programs. Useful for integrating Terraform with a system for which a first-class provider does not exist.
Stars: ✭ 136 (+466.67%)
Mutual labels:  terraform-provider
Albert
这个是我个人网站的项目,欢迎贡献代码,力求能够应用到实际工作中java相关的大多数技术栈。有兴趣请Star一下,非常感谢。qq交流群:587577705 这个项目将不断地更新!生产环境:
Stars: ✭ 168 (+600%)
Mutual labels:  twitter-api
ublog.el
🗿 elisp artifact – worked as a twitter client briefly
Stars: ✭ 18 (-25%)
Mutual labels:  twitter-api
terraform-provider-logicmonitor
Terraform LogicMonitor provider.
Stars: ✭ 19 (-20.83%)
Mutual labels:  terraform-provider
terraform-provider-hcp
Terraform provider for HashiCorp Cloud Platform.
Stars: ✭ 36 (+50%)
Mutual labels:  terraform-provider
mokkapps
My GitHub profile README which is automatically updated. Please ⭐️ if you like it
Stars: ✭ 63 (+162.5%)
Mutual labels:  twitter-api

Published on the Terraform Registry

Terraform Provider Twitter

Maintain lists, blocks, and muted accounts in Terraform.

resource "twitter_list" "hashicorp" {
  name = "HashiCorp Employees"
  mode = "public"

  description = "List of people publicly identifying as HashiCorp employees."

  members = [
    "ptyng",
  ]
}

resource "twitter_block" "blocks" {
  screen_name = "ptyng"
}

Rate Limiting

Twitters rate limiting for mutes and blocks is 15 requests per 15 minutes. In addition to just following the prescribed exponential backoff, the provider attempts to mitigate the chattiness of normal Terraform interactions by batching reads to list operations, you can maximize this by bumping up the parallelism flag. This is a bit experimental.

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].