Skip to content

Commit

Permalink
Specify required_version and description
Browse files Browse the repository at this point in the history
  • Loading branch information
rakiyoshi committed Aug 4, 2021
1 parent b151027 commit eeed8ba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 7 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
variable "instance_arn" {
type = string
type = string
description = "The Amazon Resource Name (ARN) of the SSO Instance under which the operation will be executed."
}

variable "identity_store_id" {
type = string
type = string
description = "The Identity Store ID associated with the Single Sign-On Instance."
}

variable "organization_accounts" {
Expand All @@ -13,8 +15,10 @@ variable "organization_accounts" {
id = string
name = string
}))
description = "List of information of accounts which belongs to AWS Organizations."
}

variable "assignments" {
type = map(map(map(list(string))))
type = map(map(map(list(string))))
description = "Configuration variable for account assignments."
}
2 changes: 2 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
terraform {
required_version = ">= 0.13.7"

required_providers {
aws = {
source = "hashicorp/aws"
Expand Down

0 comments on commit eeed8ba

Please sign in to comment.