Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests/provider: Unsupported field 'inferenceAccelerators' (ECS Task Definition) #15685

Closed
YakDriver opened this issue Oct 16, 2020 · 2 comments
Closed
Labels
partition/aws-us-gov Pertains to the aws-us-gov partition. service/ecs Issues and PRs that pertain to the ecs service. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.

Comments

@YakDriver
Copy link
Member

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

inferenceAccelerators field is not supported in GovCloud and possibly other non-standard partitions.

New or Affected Resource(s)

  • aws_ecs_task_definition

Config

resource "aws_ecs_task_definition" "test" {
  family = "acctest"

  container_definitions = <<TASK_DEFINITION
[
	{
		"cpu": 10,
		"command": ["sleep", "10"],
		"entryPoint": ["/"],
		"environment": [
			{"name": "VARNAME", "value": "VARVAL"}
		],
		"essential": true,
		"image": "jenkins",
		"memory": 128,
		"name": "jenkins",
		"portMappings": [
			{
				"containerPort": 80,
				"hostPort": 8080
			}
		],
        "resourceRequirements":[
            {
                "type":"InferenceAccelerator",
                "value":"device_1"
            }
        ]
	}
]
TASK_DEFINITION


  inference_accelerator {
    device_name = "device_1"
    device_type = "eia1.medium"
  }
}

Error

    resource_aws_ecs_task_definition_test.go:774: Step 1/2 error: Error running apply: 
        Error: ClientException: Unsupported field 'inferenceAccelerators'.
        
        
--- FAIL: TestAccAWSEcsTaskDefinition_inferenceAccelerator (9.35s)

References

@YakDriver YakDriver added the enhancement Requests to existing resources that expand the functionality or scope. label Oct 16, 2020
@ghost ghost added the service/ecs Issues and PRs that pertain to the ecs service. label Oct 16, 2020
@YakDriver YakDriver added partition/aws-us-gov Pertains to the aws-us-gov partition. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. and removed enhancement Requests to existing resources that expand the functionality or scope. labels Oct 16, 2020
@ewbankkit
Copy link
Contributor

Closed via #19670.

@github-actions
Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 15, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
partition/aws-us-gov Pertains to the aws-us-gov partition. service/ecs Issues and PRs that pertain to the ecs service. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

No branches or pull requests

2 participants