hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.74k stars 9.1k forks source link

Add greengrass core definition resource #10865

Open oleksiyVeretiuk opened 4 years ago

oleksiyVeretiuk commented 4 years ago

Community Note

Description

We are faced with the problem of the lack of availability of several resources related to Greengrass services, namely Greengrass Core Definition. Therefore, we suggest adding an Greengrass Core Definition resource.

New or Affected Resource(s)

Potential Terraform Configuration

resource "aws_greengrass_core_definition" "test" {
    name = "core_definition"
    core_definition_version {
        core {
            certificate_arn = "aws_iot_certificate arn"
            id = "core_id"
            sync_shadow = false
            thing_arn = "aws_iot_thing arn"
        }
    }
}
umeat commented 4 years ago

When is this planned for release?

davidpimentel commented 4 years ago

Are these still being actively worked on?

testower commented 4 years ago

@oleksiyVeretiuk What can we do to help things move on this and related PRs? Do you need help testing, reviewing? I'd be happy to contribute.

jmettes commented 3 years ago

Turns out there's a new Greengrass 2.0 https://docs.aws.amazon.com/greengrass/v2/developerguide/greengrass-v2-whats-new.html

API reference: https://docs.aws.amazon.com/greengrass/v2/APIReference/Welcome.html

susumutomita commented 3 years ago

I have plan to add Greengrass 2.0, should we create another issue and send pull request?

testower commented 3 years ago

@susumutomita @jmettes I'd be interested in contributing to this as I've missed greengrass support for a long time. Will there be some effort from main contributors or should one of us just get started?

susumutomita commented 3 years ago

At least I didn't find any other GreenGrass related ticket in issues. In addition , the latest main branch also does not have any GreenGrass V1 and V2 related resources.

susumutomita commented 3 years ago

Finally, submitted a pull request https://github.com/hashicorp/terraform-provider-aws/pull/20745 ,but this request is a part of GreenGrassV2 features , we need to add more such as deployment etc