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

fix: add awscc_gamelift_container_group_definition schema update #2126

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

quixoticmonk
Copy link
Collaborator

@quixoticmonk quixoticmonk commented Dec 11, 2024

Community Note

  • Please vote on this pull request by adding a 👍 reaction to the original pull request comment 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 pull request followers and do not help prioritize the request
  • The resources and data sources in this provider are generated from the CloudFormation schema, so they can only support the actions that the underlying schema supports. For this reason submitted bugs should be limited to defects in the generation and runtime code of the provider. Customizing behavior of the resource, or noting a gap in behavior are not valid bugs and should be submitted as enhancements to AWS via the CloudFormation Open Coverage Roadmap.

Description

Updated the Schema update for awscc_gamelift_container_group_definition as the previous reasons for schema suppression were addressed.

  • Validated successful build with the schema update.
  • Plan based on the locally built provider
the following symbols:
  + create

Terraform will perform the following actions:

  # awscc_gamelift_container_group_definition.example will be created
  + resource "awscc_gamelift_container_group_definition" "example" {
      + container_group_definition_arn   = (known after apply)
      + container_group_type             = (known after apply)
      + creation_time                    = (known after apply)
      + game_server_container_definition = {
          + container_name        = "example"
          + depends_on            = (known after apply)
          + environment_override  = (known after apply)
          + image_uri             = "public.ecr.aws/aws-containers/stateful-counter:latest"
          + mount_points          = (known after apply)
          + port_configuration    = {
              + container_port_ranges = [
                  + {
                      + from_port = 1935
                      + protocol  = "UDP"
                      + to_port   = 1935
                    },
                ]
            }
          + resolved_image_digest = (known after apply)
          + server_sdk_version    = "5.2.0"
        }
      + id                               = (known after apply)
      + name                             = "example"
      + operating_system                 = "AMAZON_LINUX_2023"
      + source_version_number            = (known after apply)
      + status                           = (known after apply)
      + status_reason                    = (known after apply)
      + support_container_definitions    = (known after apply)
      + tags                             = (known after apply)
      + total_memory_limit_mebibytes     = 4
      + total_vcpu_limit                 = 10
      + version_description              = (known after apply)
      + version_number                   = (known after apply)
    }

Plan: 1 to add, 0 to change, 0 to destroy.
awscc_gamelift_container_group_definition.example: Creating...
awscc_gamelift_container_group_definition.example: Still creating... [10s elapsed]
awscc_gamelift_container_group_definition.example: Still creating... [20s elapsed]
awscc_gamelift_container_group_definition.example: Still creating... [30s elapsed]
awscc_gamelift_container_group_definition.example: Creation complete after 34s [id=example]

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
  • Note : game_server_container_definition is required, though it is marked optional in schema. Will be opening a service ticket on the same.

Relates OR Closes #2069

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Latest schema updates suppressed: awscc_gamelift_container_group_definition
1 participant