FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_opsworks_permission

Provides an OpsWorks permission resource.

Example Usage

resource "aws_opsworks_permission" "my_stack_permission" {
  allow_ssh  = true
  allow_sudo = true
  level      = "iam_only"
  user_arn   = "${aws_iam_user.user.arn}"  
  stack_id   = "${aws_opsworks_stack.stack.id}"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io