github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/github/d/user.html.markdown (about) 1 --- 2 layout: "github" 3 page_title: "Github: github_user" 4 sidebar_current: "docs-github-datasource-user" 5 description: |- 6 Get information on a Github user. 7 --- 8 9 # github\_user 10 11 Use this data source to retrieve information about a Github user. 12 13 ## Example Usage 14 15 ``` 16 data "github_user" "example" { 17 username = "example" 18 } 19 ``` 20 21 ## Argument Reference 22 23 * `username` - (Required) The username. 24 25 ## Attributes Reference 26 27 * `login` - the user's login. 28 * `avatar_url` - the user's avatar URL. 29 * `gravatar_id` - the user's gravatar ID. 30 * `site_admin` - whether the user is a Github admin. 31 * `name` - the user's full name. 32 * `company` - the user's company name. 33 * `blog` - the user's blog location. 34 * `location` - the user's location. 35 * `email` - the user's email. 36 * `bio` - the user's bio. 37 * `public_repos` - the number of public repositories. 38 * `public_gists` - the number of public gists. 39 * `followers` - the number of followers. 40 * `following` - the number of following users. 41 * `created_at` - the creation date. 42 * `updated_at` - the update date. 43