Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.02 KB

aws_devicefarm_project.md

File metadata and controls

77 lines (56 loc) · 1.02 KB

aws_devicefarm_project

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_devicefarm_project" {
  source = "./modules/aws/r/aws_devicefarm_project"

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Resource

resource "aws_devicefarm_project" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "arn" {
  description = "returns a string"
  value       = aws_devicefarm_project.this.arn
}

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

output "this" {
  value = aws_devicefarm_project.this
}

top