Skip to content

Latest commit

 

History

History
84 lines (60 loc) · 1.16 KB

File metadata and controls

84 lines (60 loc) · 1.16 KB

github_ip_ranges

back

Index

Terraform

terraform {
  required_providers {
    github = ">= 4.6.0"
  }
}

top

Example Usage

module "github_ip_ranges" {
  source = "./modules/github/d/github_ip_ranges"

}

top

Variables

top

Datasource

data "github_ip_ranges" "this" {
}

top

Outputs

output "git" {
  description = "returns a list of string"
  value       = data.github_ip_ranges.this.git
}

output "hooks" {
  description = "returns a list of string"
  value       = data.github_ip_ranges.this.hooks
}

output "id" {
  description = "returns a string"
  value       = data.github_ip_ranges.this.id
}

output "importer" {
  description = "returns a list of string"
  value       = data.github_ip_ranges.this.importer
}

output "pages" {
  description = "returns a list of string"
  value       = data.github_ip_ranges.this.pages
}

output "this" {
  value = github_ip_ranges.this
}

top