-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Add support for AWS AppConfig #11973
Comments
Any news of when this will be available? |
I am also waiting for this, but for now I am managing to workaround with a cloudformation stack as follows : resource "aws_cloudformation_stack" "appconfig" { template_body = <<STACK |
Yes that's my approach as well but I think it would be good to add it
El jue., 28 ene. 2021 9:38, Hristo Stefanov <notifications@github.com>
escribió:
… I am also waiting for this, but for now I am managing to workaround with a
cloudformation stack as follows :
resource "aws_cloudformation_stack" "appconfig" {
name = "appconfig-stack"
template_body = <<STACK
{
"Parameters" : {
"AppName" : {
"Type" : "String",
"Default" : "helloworld",
"Description" : "Name of the application"
},
"EnvName" : {
"Type" : "String",
"Default" : "demo",
"Description" : "Name of the environment"
},
"ProfileName" : {
"Type" : "String",
"Default" : "ExclamationPoints ",
"Description" : "Name of the profile"
}
},
"Resources" : {
"appConfig": {
"Type" : "AWS::AppConfig::Application",
"Properties" : {
"Name" : { "Ref" : "AppName" }
}
},
"appConfigEnv": {
"Type" : "AWS::AppConfig::Environment",
"Properties" : {
"Name" : { "Ref" : "EnvName" },
"ApplicationId" : { "Ref" : "appConfig" }
}
},
"appConfigProfile": {
"Type" : "AWS::AppConfig::ConfigurationProfile",
"Properties" : {
"Name" : { "Ref" : "ProfileName" },
"ApplicationId" : { "Ref" : "appConfig" }
}
}
}
}
STACK
}
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#11973 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA7A7N5G52X4CRJYVOP7DC3S4EO73ANCNFSM4KSBWIGA>
.
|
SDK support is available since v1.25.42 aws/aws-sdk-go#2977 |
Nope, not as far as I know Not talking about "AWS Config", but "AWS AppConfig" ;) |
But, in that link that I posted, you'll see this:
|
The support in this provider isn't available, but the AWS SDK yes it is since 2019-11. That's means that to implement this there is no blocker... just someone with time to implement this. Add that this AWS App Config (Not AWS Config) is a must have it PaaS services for DevOps. Is not yet implemented maybe because this services is similar purpose (not the same) as Consul hashicorp (Key/Value Storage). |
Let me see if I can implement this 👍 |
Superlike...!!!! Would love to see some progress here. This is super helpful. |
Which TF CLI version will have support for this? |
Hi, I have sent pull requests to support AppConfig. #19307 Application + Environment At first, please review #19307. I think many users need this feature. |
Hi all, the following resources have been merged and will be released with
Big shoutout out to @suzuki-shunsuke and @Isaiah-Turner for providing the implementations! |
this is awesome, thanks a ton! it looks like the only resource we might be missing is |
AS a prototype, I send a pull request to support aws_appconfig_deployment. #20172 AppConfig Deployment doesn't support common CRUD API.
So I don't know how we should implement |
This functionality has been released in v3.50.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Hi All, noting here that the last resource |
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. |
Community Note
Description
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: