You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"github_repository_milestone" {
source="./modules/github/r/github_repository_milestone"# description - (optional) is a type of stringdescription=null# due_date - (optional) is a type of stringdue_date=null# owner - (required) is a type of stringowner=null# repository - (required) is a type of stringrepository=null# state - (optional) is a type of stringstate=null# title - (required) is a type of stringtitle=null
}
resource"github_repository_milestone""this" {
# description - (optional) is a type of stringdescription=var.description# due_date - (optional) is a type of stringdue_date=var.due_date# owner - (required) is a type of stringowner=var.owner# repository - (required) is a type of stringrepository=var.repository# state - (optional) is a type of stringstate=var.state# title - (required) is a type of stringtitle=var.title
}