index.html 245 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/uuid/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.11">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.4af4bdda.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cluster/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cluster Generator
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/gcr/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Google Container Registry
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/quay/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Quay
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/vault/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Vault Dynamic Secret
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/password/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Password
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/fake/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Fake
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/webhook/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Webhook
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/github/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Github
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/uuid/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. UUID
  423. </span>
  424. </a>
  425. </li>
  426. </ul>
  427. </nav>
  428. </li>
  429. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  430. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  431. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  432. <span class="md-ellipsis">
  433. Reference Docs
  434. </span>
  435. <span class="md-nav__icon md-icon"></span>
  436. </label>
  437. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  438. <label class="md-nav__title" for="__nav_2_4">
  439. <span class="md-nav__icon md-icon"></span>
  440. Reference Docs
  441. </label>
  442. <ul class="md-nav__list" data-md-scrollfix>
  443. <li class="md-nav__item md-nav__item--active">
  444. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  445. <a href="./" class="md-nav__link md-nav__link--active">
  446. <span class="md-ellipsis">
  447. API specification
  448. </span>
  449. </a>
  450. </li>
  451. <li class="md-nav__item">
  452. <a href="../controller-options/" class="md-nav__link">
  453. <span class="md-ellipsis">
  454. Controller Options
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../metrics/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Metrics
  462. </span>
  463. </a>
  464. </li>
  465. </ul>
  466. </nav>
  467. </li>
  468. </ul>
  469. </nav>
  470. </li>
  471. <li class="md-nav__item md-nav__item--nested">
  472. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  473. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  474. <span class="md-ellipsis">
  475. Guides
  476. </span>
  477. <span class="md-nav__icon md-icon"></span>
  478. </label>
  479. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  480. <label class="md-nav__title" for="__nav_3">
  481. <span class="md-nav__icon md-icon"></span>
  482. Guides
  483. </label>
  484. <ul class="md-nav__list" data-md-scrollfix>
  485. <li class="md-nav__item">
  486. <a href="../../guides/introduction/" class="md-nav__link">
  487. <span class="md-ellipsis">
  488. Introduction
  489. </span>
  490. </a>
  491. </li>
  492. <li class="md-nav__item md-nav__item--nested">
  493. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  494. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  495. <span class="md-ellipsis">
  496. External Secrets
  497. </span>
  498. <span class="md-nav__icon md-icon"></span>
  499. </label>
  500. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  501. <label class="md-nav__title" for="__nav_3_2">
  502. <span class="md-nav__icon md-icon"></span>
  503. External Secrets
  504. </label>
  505. <ul class="md-nav__list" data-md-scrollfix>
  506. <li class="md-nav__item">
  507. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  508. <span class="md-ellipsis">
  509. Extract structured data
  510. </span>
  511. </a>
  512. </li>
  513. <li class="md-nav__item">
  514. <a href="../../guides/getallsecrets/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Find Secrets by Name or Metadata
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item">
  521. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  522. <span class="md-ellipsis">
  523. Rewriting Keys
  524. </span>
  525. </a>
  526. </li>
  527. <li class="md-nav__item md-nav__item--nested">
  528. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  529. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  530. <span class="md-ellipsis">
  531. Advanced Templating
  532. </span>
  533. <span class="md-nav__icon md-icon"></span>
  534. </label>
  535. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  536. <label class="md-nav__title" for="__nav_3_2_4">
  537. <span class="md-nav__icon md-icon"></span>
  538. Advanced Templating
  539. </label>
  540. <ul class="md-nav__list" data-md-scrollfix>
  541. <li class="md-nav__item">
  542. <a href="../../guides/templating/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. v2
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item">
  549. <a href="../../guides/templating-v1/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. v1
  552. </span>
  553. </a>
  554. </li>
  555. </ul>
  556. </nav>
  557. </li>
  558. <li class="md-nav__item">
  559. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  560. <span class="md-ellipsis">
  561. Kubernetes Secret Types
  562. </span>
  563. </a>
  564. </li>
  565. <li class="md-nav__item">
  566. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  567. <span class="md-ellipsis">
  568. Lifecycle: ownership & deletion
  569. </span>
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  574. <span class="md-ellipsis">
  575. Decoding Strategies
  576. </span>
  577. </a>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/controller-class/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Controller Classes
  583. </span>
  584. </a>
  585. </li>
  586. </ul>
  587. </nav>
  588. </li>
  589. <li class="md-nav__item">
  590. <a href="../../guides/generator/" class="md-nav__link">
  591. <span class="md-ellipsis">
  592. Generators
  593. </span>
  594. </a>
  595. </li>
  596. <li class="md-nav__item">
  597. <a href="../../guides/pushsecrets/" class="md-nav__link">
  598. <span class="md-ellipsis">
  599. Push Secrets
  600. </span>
  601. </a>
  602. </li>
  603. <li class="md-nav__item md-nav__item--nested">
  604. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  605. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  606. <span class="md-ellipsis">
  607. Operations
  608. </span>
  609. <span class="md-nav__icon md-icon"></span>
  610. </label>
  611. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  612. <label class="md-nav__title" for="__nav_3_5">
  613. <span class="md-nav__icon md-icon"></span>
  614. Operations
  615. </label>
  616. <ul class="md-nav__list" data-md-scrollfix>
  617. <li class="md-nav__item">
  618. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. Multi Tenancy
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item">
  625. <a href="../../guides/security-best-practices/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Security Best Practices
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../guides/threat-model/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Threat Model
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../guides/v1beta1/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Upgrading to v1beta1
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/using-latest-image/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Using Latest Image
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Disable Cluster Features
  656. </span>
  657. </a>
  658. </li>
  659. </ul>
  660. </nav>
  661. </li>
  662. <li class="md-nav__item md-nav__item--nested">
  663. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  664. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  665. <span class="md-ellipsis">
  666. Tooling
  667. </span>
  668. <span class="md-nav__icon md-icon"></span>
  669. </label>
  670. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  671. <label class="md-nav__title" for="__nav_3_6">
  672. <span class="md-nav__icon md-icon"></span>
  673. Tooling
  674. </label>
  675. <ul class="md-nav__list" data-md-scrollfix>
  676. <li class="md-nav__item">
  677. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  678. <span class="md-ellipsis">
  679. Using the esoctl tool
  680. </span>
  681. </a>
  682. </li>
  683. </ul>
  684. </nav>
  685. </li>
  686. </ul>
  687. </nav>
  688. </li>
  689. <li class="md-nav__item md-nav__item--nested">
  690. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  691. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  692. <span class="md-ellipsis">
  693. Provider
  694. </span>
  695. <span class="md-nav__icon md-icon"></span>
  696. </label>
  697. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  698. <label class="md-nav__title" for="__nav_4">
  699. <span class="md-nav__icon md-icon"></span>
  700. Provider
  701. </label>
  702. <ul class="md-nav__list" data-md-scrollfix>
  703. <li class="md-nav__item">
  704. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  705. <span class="md-ellipsis">
  706. AWS Secrets Manager
  707. </span>
  708. </a>
  709. </li>
  710. <li class="md-nav__item">
  711. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  712. <span class="md-ellipsis">
  713. AWS Parameter Store
  714. </span>
  715. </a>
  716. </li>
  717. <li class="md-nav__item">
  718. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  719. <span class="md-ellipsis">
  720. Azure Key Vault
  721. </span>
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../../provider/beyondtrust/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. BeyondTrust
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. Bitwarden Secrets Manager
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/chef/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Chef
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/cloudru/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Cloud.ru Secret Manager
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/conjur/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. CyberArk Conjur
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/device42/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. Device42
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Google Cloud Secret Manager
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. HashiCorp Vault
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/kubernetes/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. Kubernetes
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. IBM Secrets Manager
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/akeyless/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. Akeyless
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Yandex Certificate Manager
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. Yandex Lockbox
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/alibaba/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Alibaba Cloud
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. GitLab Variables
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/github/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. Github Actions Secrets
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/oracle-vault/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Oracle Vault
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/1password-automation/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. 1Password Secrets Automation
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/webhook/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. Webhook
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/fake/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. Fake
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. senhasegura DevOps Secrets Management (DSM)
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/doppler/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. Doppler
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/keeper-security/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. Keeper Security
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/cloak/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Cloak End 2 End Encrypted Secrets
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/scaleway/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Scaleway
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/delinea/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Delinea
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/secretserver/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Secret Server
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/passbolt/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Passbolt
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/pulumi/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Pulumi ESC
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/onboardbase/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Onboardbase
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider-passworddepot/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Password Depot
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/fortanix/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Fortanix
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider/infisical/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Infisical
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/previder/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Previder
  959. </span>
  960. </a>
  961. </li>
  962. </ul>
  963. </nav>
  964. </li>
  965. <li class="md-nav__item md-nav__item--nested">
  966. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  967. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  968. <span class="md-ellipsis">
  969. Examples
  970. </span>
  971. <span class="md-nav__icon md-icon"></span>
  972. </label>
  973. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  974. <label class="md-nav__title" for="__nav_5">
  975. <span class="md-nav__icon md-icon"></span>
  976. Examples
  977. </label>
  978. <ul class="md-nav__list" data-md-scrollfix>
  979. <li class="md-nav__item">
  980. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  981. <span class="md-ellipsis">
  982. FluxCD
  983. </span>
  984. </a>
  985. </li>
  986. <li class="md-nav__item">
  987. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  988. <span class="md-ellipsis">
  989. Anchore Engine
  990. </span>
  991. </a>
  992. </li>
  993. <li class="md-nav__item">
  994. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  995. <span class="md-ellipsis">
  996. Jenkins
  997. </span>
  998. </a>
  999. </li>
  1000. <li class="md-nav__item">
  1001. <a href="../../examples/bitwarden/" class="md-nav__link">
  1002. <span class="md-ellipsis">
  1003. Bitwarden
  1004. </span>
  1005. </a>
  1006. </li>
  1007. </ul>
  1008. </nav>
  1009. </li>
  1010. <li class="md-nav__item md-nav__item--nested">
  1011. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1012. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1013. <span class="md-ellipsis">
  1014. Community
  1015. </span>
  1016. <span class="md-nav__icon md-icon"></span>
  1017. </label>
  1018. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1019. <label class="md-nav__title" for="__nav_6">
  1020. <span class="md-nav__icon md-icon"></span>
  1021. Community
  1022. </label>
  1023. <ul class="md-nav__list" data-md-scrollfix>
  1024. <li class="md-nav__item md-nav__item--nested">
  1025. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1026. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1027. <span class="md-ellipsis">
  1028. Contributing
  1029. </span>
  1030. <span class="md-nav__icon md-icon"></span>
  1031. </label>
  1032. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1033. <label class="md-nav__title" for="__nav_6_1">
  1034. <span class="md-nav__icon md-icon"></span>
  1035. Contributing
  1036. </label>
  1037. <ul class="md-nav__list" data-md-scrollfix>
  1038. <li class="md-nav__item">
  1039. <a href="../../contributing/devguide/" class="md-nav__link">
  1040. <span class="md-ellipsis">
  1041. Developer guide
  1042. </span>
  1043. </a>
  1044. </li>
  1045. <li class="md-nav__item">
  1046. <a href="../../contributing/process/" class="md-nav__link">
  1047. <span class="md-ellipsis">
  1048. Contributing Process
  1049. </span>
  1050. </a>
  1051. </li>
  1052. <li class="md-nav__item">
  1053. <a href="../../contributing/release/" class="md-nav__link">
  1054. <span class="md-ellipsis">
  1055. Release Process
  1056. </span>
  1057. </a>
  1058. </li>
  1059. <li class="md-nav__item">
  1060. <a href="../../contributing/coc/" class="md-nav__link">
  1061. <span class="md-ellipsis">
  1062. Code of Conduct
  1063. </span>
  1064. </a>
  1065. </li>
  1066. <li class="md-nav__item">
  1067. <a href="../../contributing/calendar/" class="md-nav__link">
  1068. <span class="md-ellipsis">
  1069. Community meetings calendar
  1070. </span>
  1071. </a>
  1072. </li>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/roadmap/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Roadmap
  1077. </span>
  1078. </a>
  1079. </li>
  1080. </ul>
  1081. </nav>
  1082. </li>
  1083. <li class="md-nav__item md-nav__item--nested">
  1084. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1085. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1086. <span class="md-ellipsis">
  1087. External Resources
  1088. </span>
  1089. <span class="md-nav__icon md-icon"></span>
  1090. </label>
  1091. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1092. <label class="md-nav__title" for="__nav_6_2">
  1093. <span class="md-nav__icon md-icon"></span>
  1094. External Resources
  1095. </label>
  1096. <ul class="md-nav__list" data-md-scrollfix>
  1097. <li class="md-nav__item">
  1098. <a href="../../eso-talks/" class="md-nav__link">
  1099. <span class="md-ellipsis">
  1100. Talks
  1101. </span>
  1102. </a>
  1103. </li>
  1104. <li class="md-nav__item">
  1105. <a href="../../eso-demos/" class="md-nav__link">
  1106. <span class="md-ellipsis">
  1107. Demos
  1108. </span>
  1109. </a>
  1110. </li>
  1111. <li class="md-nav__item">
  1112. <a href="../../eso-blogs/" class="md-nav__link">
  1113. <span class="md-ellipsis">
  1114. Blogs
  1115. </span>
  1116. </a>
  1117. </li>
  1118. <li class="md-nav__item">
  1119. <a href="../../eso-tools/" class="md-nav__link">
  1120. <span class="md-ellipsis">
  1121. Tools
  1122. </span>
  1123. </a>
  1124. </li>
  1125. </ul>
  1126. </nav>
  1127. </li>
  1128. </ul>
  1129. </nav>
  1130. </li>
  1131. </ul>
  1132. </nav>
  1133. </div>
  1134. </div>
  1135. </div>
  1136. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1137. <div class="md-sidebar__scrollwrap">
  1138. <div class="md-sidebar__inner">
  1139. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1140. </nav>
  1141. </div>
  1142. </div>
  1143. </div>
  1144. <div class="md-content" data-md-component="content">
  1145. <article class="md-content__inner md-typeset">
  1146. <h1>API specification</h1>
  1147. <p>Packages:</p>
  1148. <ul>
  1149. <li>
  1150. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1151. </li>
  1152. </ul>
  1153. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1154. <p>
  1155. <p>Package v1 contains resources for external-secrets</p>
  1156. </p>
  1157. <p>Resource Types:</p>
  1158. <ul></ul>
  1159. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1160. </h3>
  1161. <p>
  1162. (<em>Appears on:</em>
  1163. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1164. </p>
  1165. <p>
  1166. <p>AWSAuth tells the controller how to do authentication with aws.
  1167. Only one of secretRef or jwt can be specified.
  1168. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1169. </p>
  1170. <table>
  1171. <thead>
  1172. <tr>
  1173. <th>Field</th>
  1174. <th>Description</th>
  1175. </tr>
  1176. </thead>
  1177. <tbody>
  1178. <tr>
  1179. <td>
  1180. <code>secretRef</code></br>
  1181. <em>
  1182. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1183. AWSAuthSecretRef
  1184. </a>
  1185. </em>
  1186. </td>
  1187. <td>
  1188. <em>(Optional)</em>
  1189. </td>
  1190. </tr>
  1191. <tr>
  1192. <td>
  1193. <code>jwt</code></br>
  1194. <em>
  1195. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1196. AWSJWTAuth
  1197. </a>
  1198. </em>
  1199. </td>
  1200. <td>
  1201. <em>(Optional)</em>
  1202. </td>
  1203. </tr>
  1204. </tbody>
  1205. </table>
  1206. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1207. </h3>
  1208. <p>
  1209. (<em>Appears on:</em>
  1210. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1211. </p>
  1212. <p>
  1213. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1214. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1215. </p>
  1216. <table>
  1217. <thead>
  1218. <tr>
  1219. <th>Field</th>
  1220. <th>Description</th>
  1221. </tr>
  1222. </thead>
  1223. <tbody>
  1224. <tr>
  1225. <td>
  1226. <code>accessKeyIDSecretRef</code></br>
  1227. <em>
  1228. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1229. External Secrets meta/v1.SecretKeySelector
  1230. </a>
  1231. </em>
  1232. </td>
  1233. <td>
  1234. <p>The AccessKeyID is used for authentication</p>
  1235. </td>
  1236. </tr>
  1237. <tr>
  1238. <td>
  1239. <code>secretAccessKeySecretRef</code></br>
  1240. <em>
  1241. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1242. External Secrets meta/v1.SecretKeySelector
  1243. </a>
  1244. </em>
  1245. </td>
  1246. <td>
  1247. <p>The SecretAccessKey is used for authentication</p>
  1248. </td>
  1249. </tr>
  1250. <tr>
  1251. <td>
  1252. <code>sessionTokenSecretRef</code></br>
  1253. <em>
  1254. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1255. External Secrets meta/v1.SecretKeySelector
  1256. </a>
  1257. </em>
  1258. </td>
  1259. <td>
  1260. <p>The SessionToken used for authentication
  1261. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1262. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1263. </td>
  1264. </tr>
  1265. </tbody>
  1266. </table>
  1267. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1268. </h3>
  1269. <p>
  1270. (<em>Appears on:</em>
  1271. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1272. </p>
  1273. <p>
  1274. <p>Authenticate against AWS using service account tokens.</p>
  1275. </p>
  1276. <table>
  1277. <thead>
  1278. <tr>
  1279. <th>Field</th>
  1280. <th>Description</th>
  1281. </tr>
  1282. </thead>
  1283. <tbody>
  1284. <tr>
  1285. <td>
  1286. <code>serviceAccountRef</code></br>
  1287. <em>
  1288. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1289. External Secrets meta/v1.ServiceAccountSelector
  1290. </a>
  1291. </em>
  1292. </td>
  1293. <td>
  1294. </td>
  1295. </tr>
  1296. </tbody>
  1297. </table>
  1298. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1299. </h3>
  1300. <p>
  1301. (<em>Appears on:</em>
  1302. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1303. </p>
  1304. <p>
  1305. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1306. </p>
  1307. <table>
  1308. <thead>
  1309. <tr>
  1310. <th>Field</th>
  1311. <th>Description</th>
  1312. </tr>
  1313. </thead>
  1314. <tbody>
  1315. <tr>
  1316. <td>
  1317. <code>service</code></br>
  1318. <em>
  1319. <a href="#external-secrets.io/v1.AWSServiceType">
  1320. AWSServiceType
  1321. </a>
  1322. </em>
  1323. </td>
  1324. <td>
  1325. <p>Service defines which service should be used to fetch the secrets</p>
  1326. </td>
  1327. </tr>
  1328. <tr>
  1329. <td>
  1330. <code>auth</code></br>
  1331. <em>
  1332. <a href="#external-secrets.io/v1.AWSAuth">
  1333. AWSAuth
  1334. </a>
  1335. </em>
  1336. </td>
  1337. <td>
  1338. <em>(Optional)</em>
  1339. <p>Auth defines the information necessary to authenticate against AWS
  1340. if not set aws sdk will infer credentials from your environment
  1341. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1342. </td>
  1343. </tr>
  1344. <tr>
  1345. <td>
  1346. <code>role</code></br>
  1347. <em>
  1348. string
  1349. </em>
  1350. </td>
  1351. <td>
  1352. <em>(Optional)</em>
  1353. <p>Role is a Role ARN which the provider will assume</p>
  1354. </td>
  1355. </tr>
  1356. <tr>
  1357. <td>
  1358. <code>region</code></br>
  1359. <em>
  1360. string
  1361. </em>
  1362. </td>
  1363. <td>
  1364. <p>AWS Region to be used for the provider</p>
  1365. </td>
  1366. </tr>
  1367. <tr>
  1368. <td>
  1369. <code>additionalRoles</code></br>
  1370. <em>
  1371. []string
  1372. </em>
  1373. </td>
  1374. <td>
  1375. <em>(Optional)</em>
  1376. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1377. </td>
  1378. </tr>
  1379. <tr>
  1380. <td>
  1381. <code>externalID</code></br>
  1382. <em>
  1383. string
  1384. </em>
  1385. </td>
  1386. <td>
  1387. <p>AWS External ID set on assumed IAM roles</p>
  1388. </td>
  1389. </tr>
  1390. <tr>
  1391. <td>
  1392. <code>sessionTags</code></br>
  1393. <em>
  1394. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1395. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1396. </a>
  1397. </em>
  1398. </td>
  1399. <td>
  1400. <em>(Optional)</em>
  1401. <p>AWS STS assume role session tags</p>
  1402. </td>
  1403. </tr>
  1404. <tr>
  1405. <td>
  1406. <code>secretsManager</code></br>
  1407. <em>
  1408. <a href="#external-secrets.io/v1.SecretsManager">
  1409. SecretsManager
  1410. </a>
  1411. </em>
  1412. </td>
  1413. <td>
  1414. <em>(Optional)</em>
  1415. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1416. </td>
  1417. </tr>
  1418. <tr>
  1419. <td>
  1420. <code>transitiveTagKeys</code></br>
  1421. <em>
  1422. []*string
  1423. </em>
  1424. </td>
  1425. <td>
  1426. <em>(Optional)</em>
  1427. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1428. </td>
  1429. </tr>
  1430. <tr>
  1431. <td>
  1432. <code>prefix</code></br>
  1433. <em>
  1434. string
  1435. </em>
  1436. </td>
  1437. <td>
  1438. <em>(Optional)</em>
  1439. <p>Prefix adds a prefix to all retrieved values.</p>
  1440. </td>
  1441. </tr>
  1442. </tbody>
  1443. </table>
  1444. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1445. (<code>string</code> alias)</p></h3>
  1446. <p>
  1447. (<em>Appears on:</em>
  1448. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1449. </p>
  1450. <p>
  1451. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1452. </p>
  1453. <table>
  1454. <thead>
  1455. <tr>
  1456. <th>Value</th>
  1457. <th>Description</th>
  1458. </tr>
  1459. </thead>
  1460. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1461. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1462. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1463. </td>
  1464. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1465. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1466. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1467. </td>
  1468. </tr></tbody>
  1469. </table>
  1470. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1471. </h3>
  1472. <p>
  1473. (<em>Appears on:</em>
  1474. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1475. </p>
  1476. <p>
  1477. </p>
  1478. <table>
  1479. <thead>
  1480. <tr>
  1481. <th>Field</th>
  1482. <th>Description</th>
  1483. </tr>
  1484. </thead>
  1485. <tbody>
  1486. <tr>
  1487. <td>
  1488. <code>secretRef</code></br>
  1489. <em>
  1490. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1491. AkeylessAuthSecretRef
  1492. </a>
  1493. </em>
  1494. </td>
  1495. <td>
  1496. <em>(Optional)</em>
  1497. <p>Reference to a Secret that contains the details
  1498. to authenticate with Akeyless.</p>
  1499. </td>
  1500. </tr>
  1501. <tr>
  1502. <td>
  1503. <code>kubernetesAuth</code></br>
  1504. <em>
  1505. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1506. AkeylessKubernetesAuth
  1507. </a>
  1508. </em>
  1509. </td>
  1510. <td>
  1511. <em>(Optional)</em>
  1512. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1513. token stored in the named Secret resource.</p>
  1514. </td>
  1515. </tr>
  1516. </tbody>
  1517. </table>
  1518. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1519. </h3>
  1520. <p>
  1521. (<em>Appears on:</em>
  1522. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1523. </p>
  1524. <p>
  1525. <p>AkeylessAuthSecretRef
  1526. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1527. </p>
  1528. <table>
  1529. <thead>
  1530. <tr>
  1531. <th>Field</th>
  1532. <th>Description</th>
  1533. </tr>
  1534. </thead>
  1535. <tbody>
  1536. <tr>
  1537. <td>
  1538. <code>accessID</code></br>
  1539. <em>
  1540. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1541. External Secrets meta/v1.SecretKeySelector
  1542. </a>
  1543. </em>
  1544. </td>
  1545. <td>
  1546. <p>The SecretAccessID is used for authentication</p>
  1547. </td>
  1548. </tr>
  1549. <tr>
  1550. <td>
  1551. <code>accessType</code></br>
  1552. <em>
  1553. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1554. External Secrets meta/v1.SecretKeySelector
  1555. </a>
  1556. </em>
  1557. </td>
  1558. <td>
  1559. </td>
  1560. </tr>
  1561. <tr>
  1562. <td>
  1563. <code>accessTypeParam</code></br>
  1564. <em>
  1565. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1566. External Secrets meta/v1.SecretKeySelector
  1567. </a>
  1568. </em>
  1569. </td>
  1570. <td>
  1571. </td>
  1572. </tr>
  1573. </tbody>
  1574. </table>
  1575. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1576. </h3>
  1577. <p>
  1578. (<em>Appears on:</em>
  1579. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1580. </p>
  1581. <p>
  1582. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1583. </p>
  1584. <table>
  1585. <thead>
  1586. <tr>
  1587. <th>Field</th>
  1588. <th>Description</th>
  1589. </tr>
  1590. </thead>
  1591. <tbody>
  1592. <tr>
  1593. <td>
  1594. <code>accessID</code></br>
  1595. <em>
  1596. string
  1597. </em>
  1598. </td>
  1599. <td>
  1600. <p>the Akeyless Kubernetes auth-method access-id</p>
  1601. </td>
  1602. </tr>
  1603. <tr>
  1604. <td>
  1605. <code>k8sConfName</code></br>
  1606. <em>
  1607. string
  1608. </em>
  1609. </td>
  1610. <td>
  1611. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1612. </td>
  1613. </tr>
  1614. <tr>
  1615. <td>
  1616. <code>serviceAccountRef</code></br>
  1617. <em>
  1618. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1619. External Secrets meta/v1.ServiceAccountSelector
  1620. </a>
  1621. </em>
  1622. </td>
  1623. <td>
  1624. <em>(Optional)</em>
  1625. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1626. If the service account is specified, the service account secret token JWT will be used
  1627. for authenticating with Akeyless. If the service account selector is not supplied,
  1628. the secretRef will be used instead.</p>
  1629. </td>
  1630. </tr>
  1631. <tr>
  1632. <td>
  1633. <code>secretRef</code></br>
  1634. <em>
  1635. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1636. External Secrets meta/v1.SecretKeySelector
  1637. </a>
  1638. </em>
  1639. </td>
  1640. <td>
  1641. <em>(Optional)</em>
  1642. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1643. for authenticating with Akeyless. If a name is specified without a key,
  1644. <code>token</code> is the default. If one is not specified, the one bound to
  1645. the controller will be used.</p>
  1646. </td>
  1647. </tr>
  1648. </tbody>
  1649. </table>
  1650. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1651. </h3>
  1652. <p>
  1653. (<em>Appears on:</em>
  1654. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1655. </p>
  1656. <p>
  1657. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1658. </p>
  1659. <table>
  1660. <thead>
  1661. <tr>
  1662. <th>Field</th>
  1663. <th>Description</th>
  1664. </tr>
  1665. </thead>
  1666. <tbody>
  1667. <tr>
  1668. <td>
  1669. <code>akeylessGWApiURL</code></br>
  1670. <em>
  1671. string
  1672. </em>
  1673. </td>
  1674. <td>
  1675. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1676. </td>
  1677. </tr>
  1678. <tr>
  1679. <td>
  1680. <code>authSecretRef</code></br>
  1681. <em>
  1682. <a href="#external-secrets.io/v1.AkeylessAuth">
  1683. AkeylessAuth
  1684. </a>
  1685. </em>
  1686. </td>
  1687. <td>
  1688. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1689. </td>
  1690. </tr>
  1691. <tr>
  1692. <td>
  1693. <code>caBundle</code></br>
  1694. <em>
  1695. []byte
  1696. </em>
  1697. </td>
  1698. <td>
  1699. <em>(Optional)</em>
  1700. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1701. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1702. are used to validate the TLS connection.</p>
  1703. </td>
  1704. </tr>
  1705. <tr>
  1706. <td>
  1707. <code>caProvider</code></br>
  1708. <em>
  1709. <a href="#external-secrets.io/v1.CAProvider">
  1710. CAProvider
  1711. </a>
  1712. </em>
  1713. </td>
  1714. <td>
  1715. <em>(Optional)</em>
  1716. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1717. </td>
  1718. </tr>
  1719. </tbody>
  1720. </table>
  1721. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1722. </h3>
  1723. <p>
  1724. (<em>Appears on:</em>
  1725. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1726. </p>
  1727. <p>
  1728. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1729. </p>
  1730. <table>
  1731. <thead>
  1732. <tr>
  1733. <th>Field</th>
  1734. <th>Description</th>
  1735. </tr>
  1736. </thead>
  1737. <tbody>
  1738. <tr>
  1739. <td>
  1740. <code>secretRef</code></br>
  1741. <em>
  1742. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1743. AlibabaAuthSecretRef
  1744. </a>
  1745. </em>
  1746. </td>
  1747. <td>
  1748. <em>(Optional)</em>
  1749. </td>
  1750. </tr>
  1751. <tr>
  1752. <td>
  1753. <code>rrsa</code></br>
  1754. <em>
  1755. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1756. AlibabaRRSAAuth
  1757. </a>
  1758. </em>
  1759. </td>
  1760. <td>
  1761. <em>(Optional)</em>
  1762. </td>
  1763. </tr>
  1764. </tbody>
  1765. </table>
  1766. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1767. </h3>
  1768. <p>
  1769. (<em>Appears on:</em>
  1770. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1771. </p>
  1772. <p>
  1773. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1774. </p>
  1775. <table>
  1776. <thead>
  1777. <tr>
  1778. <th>Field</th>
  1779. <th>Description</th>
  1780. </tr>
  1781. </thead>
  1782. <tbody>
  1783. <tr>
  1784. <td>
  1785. <code>accessKeyIDSecretRef</code></br>
  1786. <em>
  1787. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1788. External Secrets meta/v1.SecretKeySelector
  1789. </a>
  1790. </em>
  1791. </td>
  1792. <td>
  1793. <p>The AccessKeyID is used for authentication</p>
  1794. </td>
  1795. </tr>
  1796. <tr>
  1797. <td>
  1798. <code>accessKeySecretSecretRef</code></br>
  1799. <em>
  1800. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1801. External Secrets meta/v1.SecretKeySelector
  1802. </a>
  1803. </em>
  1804. </td>
  1805. <td>
  1806. <p>The AccessKeySecret is used for authentication</p>
  1807. </td>
  1808. </tr>
  1809. </tbody>
  1810. </table>
  1811. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1812. </h3>
  1813. <p>
  1814. (<em>Appears on:</em>
  1815. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1816. </p>
  1817. <p>
  1818. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1819. </p>
  1820. <table>
  1821. <thead>
  1822. <tr>
  1823. <th>Field</th>
  1824. <th>Description</th>
  1825. </tr>
  1826. </thead>
  1827. <tbody>
  1828. <tr>
  1829. <td>
  1830. <code>auth</code></br>
  1831. <em>
  1832. <a href="#external-secrets.io/v1.AlibabaAuth">
  1833. AlibabaAuth
  1834. </a>
  1835. </em>
  1836. </td>
  1837. <td>
  1838. </td>
  1839. </tr>
  1840. <tr>
  1841. <td>
  1842. <code>regionID</code></br>
  1843. <em>
  1844. string
  1845. </em>
  1846. </td>
  1847. <td>
  1848. <p>Alibaba Region to be used for the provider</p>
  1849. </td>
  1850. </tr>
  1851. </tbody>
  1852. </table>
  1853. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1854. </h3>
  1855. <p>
  1856. (<em>Appears on:</em>
  1857. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1858. </p>
  1859. <p>
  1860. <p>Authenticate against Alibaba using RRSA.</p>
  1861. </p>
  1862. <table>
  1863. <thead>
  1864. <tr>
  1865. <th>Field</th>
  1866. <th>Description</th>
  1867. </tr>
  1868. </thead>
  1869. <tbody>
  1870. <tr>
  1871. <td>
  1872. <code>oidcProviderArn</code></br>
  1873. <em>
  1874. string
  1875. </em>
  1876. </td>
  1877. <td>
  1878. </td>
  1879. </tr>
  1880. <tr>
  1881. <td>
  1882. <code>oidcTokenFilePath</code></br>
  1883. <em>
  1884. string
  1885. </em>
  1886. </td>
  1887. <td>
  1888. </td>
  1889. </tr>
  1890. <tr>
  1891. <td>
  1892. <code>roleArn</code></br>
  1893. <em>
  1894. string
  1895. </em>
  1896. </td>
  1897. <td>
  1898. </td>
  1899. </tr>
  1900. <tr>
  1901. <td>
  1902. <code>sessionName</code></br>
  1903. <em>
  1904. string
  1905. </em>
  1906. </td>
  1907. <td>
  1908. </td>
  1909. </tr>
  1910. </tbody>
  1911. </table>
  1912. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  1913. (<code>string</code> alias)</p></h3>
  1914. <p>
  1915. (<em>Appears on:</em>
  1916. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1917. </p>
  1918. <p>
  1919. <p>AuthType describes how to authenticate to the Azure Keyvault
  1920. Only one of the following auth types may be specified.
  1921. If none of the following auth type is specified, the default one
  1922. is ServicePrincipal.</p>
  1923. </p>
  1924. <table>
  1925. <thead>
  1926. <tr>
  1927. <th>Value</th>
  1928. <th>Description</th>
  1929. </tr>
  1930. </thead>
  1931. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1932. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1933. </td>
  1934. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1935. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1936. </td>
  1937. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1938. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1939. </td>
  1940. </tr></tbody>
  1941. </table>
  1942. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  1943. (<code>string</code> alias)</p></h3>
  1944. <p>
  1945. (<em>Appears on:</em>
  1946. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1947. </p>
  1948. <p>
  1949. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1950. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1951. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1952. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1953. </p>
  1954. <table>
  1955. <thead>
  1956. <tr>
  1957. <th>Value</th>
  1958. <th>Description</th>
  1959. </tr>
  1960. </thead>
  1961. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1962. <td></td>
  1963. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1964. <td></td>
  1965. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1966. <td></td>
  1967. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1968. <td></td>
  1969. </tr></tbody>
  1970. </table>
  1971. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  1972. </h3>
  1973. <p>
  1974. (<em>Appears on:</em>
  1975. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1976. </p>
  1977. <p>
  1978. <p>Configuration used to authenticate with Azure.</p>
  1979. </p>
  1980. <table>
  1981. <thead>
  1982. <tr>
  1983. <th>Field</th>
  1984. <th>Description</th>
  1985. </tr>
  1986. </thead>
  1987. <tbody>
  1988. <tr>
  1989. <td>
  1990. <code>clientId</code></br>
  1991. <em>
  1992. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1993. External Secrets meta/v1.SecretKeySelector
  1994. </a>
  1995. </em>
  1996. </td>
  1997. <td>
  1998. <em>(Optional)</em>
  1999. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2000. </td>
  2001. </tr>
  2002. <tr>
  2003. <td>
  2004. <code>tenantId</code></br>
  2005. <em>
  2006. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2007. External Secrets meta/v1.SecretKeySelector
  2008. </a>
  2009. </em>
  2010. </td>
  2011. <td>
  2012. <em>(Optional)</em>
  2013. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2014. </td>
  2015. </tr>
  2016. <tr>
  2017. <td>
  2018. <code>clientSecret</code></br>
  2019. <em>
  2020. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2021. External Secrets meta/v1.SecretKeySelector
  2022. </a>
  2023. </em>
  2024. </td>
  2025. <td>
  2026. <em>(Optional)</em>
  2027. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2028. </td>
  2029. </tr>
  2030. <tr>
  2031. <td>
  2032. <code>clientCertificate</code></br>
  2033. <em>
  2034. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2035. External Secrets meta/v1.SecretKeySelector
  2036. </a>
  2037. </em>
  2038. </td>
  2039. <td>
  2040. <em>(Optional)</em>
  2041. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2042. </td>
  2043. </tr>
  2044. </tbody>
  2045. </table>
  2046. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2047. </h3>
  2048. <p>
  2049. (<em>Appears on:</em>
  2050. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2051. </p>
  2052. <p>
  2053. <p>Configures an store to sync secrets using Azure KV.</p>
  2054. </p>
  2055. <table>
  2056. <thead>
  2057. <tr>
  2058. <th>Field</th>
  2059. <th>Description</th>
  2060. </tr>
  2061. </thead>
  2062. <tbody>
  2063. <tr>
  2064. <td>
  2065. <code>authType</code></br>
  2066. <em>
  2067. <a href="#external-secrets.io/v1.AzureAuthType">
  2068. AzureAuthType
  2069. </a>
  2070. </em>
  2071. </td>
  2072. <td>
  2073. <em>(Optional)</em>
  2074. <p>Auth type defines how to authenticate to the keyvault service.
  2075. Valid values are:
  2076. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2077. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2078. </td>
  2079. </tr>
  2080. <tr>
  2081. <td>
  2082. <code>vaultUrl</code></br>
  2083. <em>
  2084. string
  2085. </em>
  2086. </td>
  2087. <td>
  2088. <p>Vault Url from which the secrets to be fetched from.</p>
  2089. </td>
  2090. </tr>
  2091. <tr>
  2092. <td>
  2093. <code>tenantId</code></br>
  2094. <em>
  2095. string
  2096. </em>
  2097. </td>
  2098. <td>
  2099. <em>(Optional)</em>
  2100. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2101. </td>
  2102. </tr>
  2103. <tr>
  2104. <td>
  2105. <code>environmentType</code></br>
  2106. <em>
  2107. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2108. AzureEnvironmentType
  2109. </a>
  2110. </em>
  2111. </td>
  2112. <td>
  2113. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2114. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2115. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2116. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2117. </td>
  2118. </tr>
  2119. <tr>
  2120. <td>
  2121. <code>authSecretRef</code></br>
  2122. <em>
  2123. <a href="#external-secrets.io/v1.AzureKVAuth">
  2124. AzureKVAuth
  2125. </a>
  2126. </em>
  2127. </td>
  2128. <td>
  2129. <em>(Optional)</em>
  2130. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2131. </td>
  2132. </tr>
  2133. <tr>
  2134. <td>
  2135. <code>serviceAccountRef</code></br>
  2136. <em>
  2137. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2138. External Secrets meta/v1.ServiceAccountSelector
  2139. </a>
  2140. </em>
  2141. </td>
  2142. <td>
  2143. <em>(Optional)</em>
  2144. <p>ServiceAccountRef specified the service account
  2145. that should be used when authenticating with WorkloadIdentity.</p>
  2146. </td>
  2147. </tr>
  2148. <tr>
  2149. <td>
  2150. <code>identityId</code></br>
  2151. <em>
  2152. string
  2153. </em>
  2154. </td>
  2155. <td>
  2156. <em>(Optional)</em>
  2157. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2158. </td>
  2159. </tr>
  2160. </tbody>
  2161. </table>
  2162. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2163. </h3>
  2164. <p>
  2165. (<em>Appears on:</em>
  2166. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2167. </p>
  2168. <p>
  2169. </p>
  2170. <table>
  2171. <thead>
  2172. <tr>
  2173. <th>Field</th>
  2174. <th>Description</th>
  2175. </tr>
  2176. </thead>
  2177. <tbody>
  2178. <tr>
  2179. <td>
  2180. <code>value</code></br>
  2181. <em>
  2182. string
  2183. </em>
  2184. </td>
  2185. <td>
  2186. <em>(Optional)</em>
  2187. <p>Value can be specified directly to set a value without using a secret.</p>
  2188. </td>
  2189. </tr>
  2190. <tr>
  2191. <td>
  2192. <code>secretRef</code></br>
  2193. <em>
  2194. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2195. External Secrets meta/v1.SecretKeySelector
  2196. </a>
  2197. </em>
  2198. </td>
  2199. <td>
  2200. <em>(Optional)</em>
  2201. <p>SecretRef references a key in a secret that will be used as value.</p>
  2202. </td>
  2203. </tr>
  2204. </tbody>
  2205. </table>
  2206. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2207. </h3>
  2208. <p>
  2209. (<em>Appears on:</em>
  2210. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2211. </p>
  2212. <p>
  2213. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2214. </p>
  2215. <table>
  2216. <thead>
  2217. <tr>
  2218. <th>Field</th>
  2219. <th>Description</th>
  2220. </tr>
  2221. </thead>
  2222. <tbody>
  2223. <tr>
  2224. <td>
  2225. <code>apiKey</code></br>
  2226. <em>
  2227. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2228. BeyondTrustProviderSecretRef
  2229. </a>
  2230. </em>
  2231. </td>
  2232. <td>
  2233. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2234. </td>
  2235. </tr>
  2236. <tr>
  2237. <td>
  2238. <code>clientId</code></br>
  2239. <em>
  2240. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2241. BeyondTrustProviderSecretRef
  2242. </a>
  2243. </em>
  2244. </td>
  2245. <td>
  2246. <p>ClientID is the API OAuth Client ID.</p>
  2247. </td>
  2248. </tr>
  2249. <tr>
  2250. <td>
  2251. <code>clientSecret</code></br>
  2252. <em>
  2253. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2254. BeyondTrustProviderSecretRef
  2255. </a>
  2256. </em>
  2257. </td>
  2258. <td>
  2259. <p>ClientSecret is the API OAuth Client Secret.</p>
  2260. </td>
  2261. </tr>
  2262. <tr>
  2263. <td>
  2264. <code>certificate</code></br>
  2265. <em>
  2266. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2267. BeyondTrustProviderSecretRef
  2268. </a>
  2269. </em>
  2270. </td>
  2271. <td>
  2272. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2273. </td>
  2274. </tr>
  2275. <tr>
  2276. <td>
  2277. <code>certificateKey</code></br>
  2278. <em>
  2279. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2280. BeyondTrustProviderSecretRef
  2281. </a>
  2282. </em>
  2283. </td>
  2284. <td>
  2285. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2286. </td>
  2287. </tr>
  2288. </tbody>
  2289. </table>
  2290. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2291. </h3>
  2292. <p>
  2293. (<em>Appears on:</em>
  2294. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2295. </p>
  2296. <p>
  2297. </p>
  2298. <table>
  2299. <thead>
  2300. <tr>
  2301. <th>Field</th>
  2302. <th>Description</th>
  2303. </tr>
  2304. </thead>
  2305. <tbody>
  2306. <tr>
  2307. <td>
  2308. <code>auth</code></br>
  2309. <em>
  2310. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2311. BeyondtrustAuth
  2312. </a>
  2313. </em>
  2314. </td>
  2315. <td>
  2316. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2317. </td>
  2318. </tr>
  2319. <tr>
  2320. <td>
  2321. <code>server</code></br>
  2322. <em>
  2323. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2324. BeyondtrustServer
  2325. </a>
  2326. </em>
  2327. </td>
  2328. <td>
  2329. <p>Auth configures how API server works.</p>
  2330. </td>
  2331. </tr>
  2332. </tbody>
  2333. </table>
  2334. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2335. </h3>
  2336. <p>
  2337. (<em>Appears on:</em>
  2338. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2339. </p>
  2340. <p>
  2341. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2342. </p>
  2343. <table>
  2344. <thead>
  2345. <tr>
  2346. <th>Field</th>
  2347. <th>Description</th>
  2348. </tr>
  2349. </thead>
  2350. <tbody>
  2351. <tr>
  2352. <td>
  2353. <code>apiUrl</code></br>
  2354. <em>
  2355. string
  2356. </em>
  2357. </td>
  2358. <td>
  2359. </td>
  2360. </tr>
  2361. <tr>
  2362. <td>
  2363. <code>apiVersion</code></br>
  2364. <em>
  2365. string
  2366. </em>
  2367. </td>
  2368. <td>
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <td>
  2373. <code>retrievalType</code></br>
  2374. <em>
  2375. string
  2376. </em>
  2377. </td>
  2378. <td>
  2379. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2380. </td>
  2381. </tr>
  2382. <tr>
  2383. <td>
  2384. <code>separator</code></br>
  2385. <em>
  2386. string
  2387. </em>
  2388. </td>
  2389. <td>
  2390. <p>A character that separates the folder names.</p>
  2391. </td>
  2392. </tr>
  2393. <tr>
  2394. <td>
  2395. <code>verifyCA</code></br>
  2396. <em>
  2397. bool
  2398. </em>
  2399. </td>
  2400. <td>
  2401. </td>
  2402. </tr>
  2403. <tr>
  2404. <td>
  2405. <code>clientTimeOutSeconds</code></br>
  2406. <em>
  2407. int
  2408. </em>
  2409. </td>
  2410. <td>
  2411. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2412. </td>
  2413. </tr>
  2414. </tbody>
  2415. </table>
  2416. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2417. </h3>
  2418. <p>
  2419. (<em>Appears on:</em>
  2420. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2421. </p>
  2422. <p>
  2423. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2424. </p>
  2425. <table>
  2426. <thead>
  2427. <tr>
  2428. <th>Field</th>
  2429. <th>Description</th>
  2430. </tr>
  2431. </thead>
  2432. <tbody>
  2433. <tr>
  2434. <td>
  2435. <code>secretRef</code></br>
  2436. <em>
  2437. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2438. BitwardenSecretsManagerSecretRef
  2439. </a>
  2440. </em>
  2441. </td>
  2442. <td>
  2443. </td>
  2444. </tr>
  2445. </tbody>
  2446. </table>
  2447. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2448. </h3>
  2449. <p>
  2450. (<em>Appears on:</em>
  2451. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2452. </p>
  2453. <p>
  2454. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2455. </p>
  2456. <table>
  2457. <thead>
  2458. <tr>
  2459. <th>Field</th>
  2460. <th>Description</th>
  2461. </tr>
  2462. </thead>
  2463. <tbody>
  2464. <tr>
  2465. <td>
  2466. <code>apiURL</code></br>
  2467. <em>
  2468. string
  2469. </em>
  2470. </td>
  2471. <td>
  2472. </td>
  2473. </tr>
  2474. <tr>
  2475. <td>
  2476. <code>identityURL</code></br>
  2477. <em>
  2478. string
  2479. </em>
  2480. </td>
  2481. <td>
  2482. </td>
  2483. </tr>
  2484. <tr>
  2485. <td>
  2486. <code>bitwardenServerSDKURL</code></br>
  2487. <em>
  2488. string
  2489. </em>
  2490. </td>
  2491. <td>
  2492. </td>
  2493. </tr>
  2494. <tr>
  2495. <td>
  2496. <code>caBundle</code></br>
  2497. <em>
  2498. string
  2499. </em>
  2500. </td>
  2501. <td>
  2502. <em>(Optional)</em>
  2503. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2504. can be performed.</p>
  2505. </td>
  2506. </tr>
  2507. <tr>
  2508. <td>
  2509. <code>caProvider</code></br>
  2510. <em>
  2511. <a href="#external-secrets.io/v1.CAProvider">
  2512. CAProvider
  2513. </a>
  2514. </em>
  2515. </td>
  2516. <td>
  2517. <em>(Optional)</em>
  2518. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2519. </td>
  2520. </tr>
  2521. <tr>
  2522. <td>
  2523. <code>organizationID</code></br>
  2524. <em>
  2525. string
  2526. </em>
  2527. </td>
  2528. <td>
  2529. <p>OrganizationID determines which organization this secret store manages.</p>
  2530. </td>
  2531. </tr>
  2532. <tr>
  2533. <td>
  2534. <code>projectID</code></br>
  2535. <em>
  2536. string
  2537. </em>
  2538. </td>
  2539. <td>
  2540. <p>ProjectID determines which project this secret store manages.</p>
  2541. </td>
  2542. </tr>
  2543. <tr>
  2544. <td>
  2545. <code>auth</code></br>
  2546. <em>
  2547. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2548. BitwardenSecretsManagerAuth
  2549. </a>
  2550. </em>
  2551. </td>
  2552. <td>
  2553. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2554. Make sure that the token being used has permissions on the given secret.</p>
  2555. </td>
  2556. </tr>
  2557. </tbody>
  2558. </table>
  2559. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2560. </h3>
  2561. <p>
  2562. (<em>Appears on:</em>
  2563. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2564. </p>
  2565. <p>
  2566. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2567. </p>
  2568. <table>
  2569. <thead>
  2570. <tr>
  2571. <th>Field</th>
  2572. <th>Description</th>
  2573. </tr>
  2574. </thead>
  2575. <tbody>
  2576. <tr>
  2577. <td>
  2578. <code>credentials</code></br>
  2579. <em>
  2580. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2581. External Secrets meta/v1.SecretKeySelector
  2582. </a>
  2583. </em>
  2584. </td>
  2585. <td>
  2586. <p>AccessToken used for the bitwarden instance.</p>
  2587. </td>
  2588. </tr>
  2589. </tbody>
  2590. </table>
  2591. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2592. </h3>
  2593. <p>
  2594. (<em>Appears on:</em>
  2595. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2596. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2597. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2598. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2599. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2600. </p>
  2601. <p>
  2602. <p>Used to provide custom certificate authority (CA) certificates
  2603. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2604. that contains a PEM-encoded certificate.</p>
  2605. </p>
  2606. <table>
  2607. <thead>
  2608. <tr>
  2609. <th>Field</th>
  2610. <th>Description</th>
  2611. </tr>
  2612. </thead>
  2613. <tbody>
  2614. <tr>
  2615. <td>
  2616. <code>type</code></br>
  2617. <em>
  2618. <a href="#external-secrets.io/v1.CAProviderType">
  2619. CAProviderType
  2620. </a>
  2621. </em>
  2622. </td>
  2623. <td>
  2624. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2625. </td>
  2626. </tr>
  2627. <tr>
  2628. <td>
  2629. <code>name</code></br>
  2630. <em>
  2631. string
  2632. </em>
  2633. </td>
  2634. <td>
  2635. <p>The name of the object located at the provider type.</p>
  2636. </td>
  2637. </tr>
  2638. <tr>
  2639. <td>
  2640. <code>key</code></br>
  2641. <em>
  2642. string
  2643. </em>
  2644. </td>
  2645. <td>
  2646. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2647. </td>
  2648. </tr>
  2649. <tr>
  2650. <td>
  2651. <code>namespace</code></br>
  2652. <em>
  2653. string
  2654. </em>
  2655. </td>
  2656. <td>
  2657. <em>(Optional)</em>
  2658. <p>The namespace the Provider type is in.
  2659. Can only be defined when used in a ClusterSecretStore.</p>
  2660. </td>
  2661. </tr>
  2662. </tbody>
  2663. </table>
  2664. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2665. (<code>string</code> alias)</p></h3>
  2666. <p>
  2667. (<em>Appears on:</em>
  2668. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2669. </p>
  2670. <p>
  2671. </p>
  2672. <table>
  2673. <thead>
  2674. <tr>
  2675. <th>Value</th>
  2676. <th>Description</th>
  2677. </tr>
  2678. </thead>
  2679. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2680. <td></td>
  2681. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2682. <td></td>
  2683. </tr></tbody>
  2684. </table>
  2685. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  2686. </h3>
  2687. <p>
  2688. (<em>Appears on:</em>
  2689. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  2690. </p>
  2691. <p>
  2692. <p>CSMAuth contains a secretRef for credentials.</p>
  2693. </p>
  2694. <table>
  2695. <thead>
  2696. <tr>
  2697. <th>Field</th>
  2698. <th>Description</th>
  2699. </tr>
  2700. </thead>
  2701. <tbody>
  2702. <tr>
  2703. <td>
  2704. <code>secretRef</code></br>
  2705. <em>
  2706. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  2707. CSMAuthSecretRef
  2708. </a>
  2709. </em>
  2710. </td>
  2711. <td>
  2712. <em>(Optional)</em>
  2713. </td>
  2714. </tr>
  2715. </tbody>
  2716. </table>
  2717. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  2718. </h3>
  2719. <p>
  2720. (<em>Appears on:</em>
  2721. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  2722. </p>
  2723. <p>
  2724. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  2725. </p>
  2726. <table>
  2727. <thead>
  2728. <tr>
  2729. <th>Field</th>
  2730. <th>Description</th>
  2731. </tr>
  2732. </thead>
  2733. <tbody>
  2734. <tr>
  2735. <td>
  2736. <code>accessKeyIDSecretRef</code></br>
  2737. <em>
  2738. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2739. External Secrets meta/v1.SecretKeySelector
  2740. </a>
  2741. </em>
  2742. </td>
  2743. <td>
  2744. <p>The AccessKeyID is used for authentication</p>
  2745. </td>
  2746. </tr>
  2747. <tr>
  2748. <td>
  2749. <code>accessKeySecretSecretRef</code></br>
  2750. <em>
  2751. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2752. External Secrets meta/v1.SecretKeySelector
  2753. </a>
  2754. </em>
  2755. </td>
  2756. <td>
  2757. <p>The AccessKeySecret is used for authentication</p>
  2758. </td>
  2759. </tr>
  2760. </tbody>
  2761. </table>
  2762. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  2763. </h3>
  2764. <p>
  2765. (<em>Appears on:</em>
  2766. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  2767. </p>
  2768. <p>
  2769. </p>
  2770. <table>
  2771. <thead>
  2772. <tr>
  2773. <th>Field</th>
  2774. <th>Description</th>
  2775. </tr>
  2776. </thead>
  2777. <tbody>
  2778. <tr>
  2779. <td>
  2780. <code>clientCert</code></br>
  2781. <em>
  2782. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2783. External Secrets meta/v1.SecretKeySelector
  2784. </a>
  2785. </em>
  2786. </td>
  2787. <td>
  2788. </td>
  2789. </tr>
  2790. <tr>
  2791. <td>
  2792. <code>clientKey</code></br>
  2793. <em>
  2794. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2795. External Secrets meta/v1.SecretKeySelector
  2796. </a>
  2797. </em>
  2798. </td>
  2799. <td>
  2800. </td>
  2801. </tr>
  2802. </tbody>
  2803. </table>
  2804. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  2805. </h3>
  2806. <p>
  2807. (<em>Appears on:</em>
  2808. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  2809. </p>
  2810. <p>
  2811. <p>ChefAuth contains a secretRef for credentials.</p>
  2812. </p>
  2813. <table>
  2814. <thead>
  2815. <tr>
  2816. <th>Field</th>
  2817. <th>Description</th>
  2818. </tr>
  2819. </thead>
  2820. <tbody>
  2821. <tr>
  2822. <td>
  2823. <code>secretRef</code></br>
  2824. <em>
  2825. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  2826. ChefAuthSecretRef
  2827. </a>
  2828. </em>
  2829. </td>
  2830. <td>
  2831. </td>
  2832. </tr>
  2833. </tbody>
  2834. </table>
  2835. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  2836. </h3>
  2837. <p>
  2838. (<em>Appears on:</em>
  2839. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  2840. </p>
  2841. <p>
  2842. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2843. </p>
  2844. <table>
  2845. <thead>
  2846. <tr>
  2847. <th>Field</th>
  2848. <th>Description</th>
  2849. </tr>
  2850. </thead>
  2851. <tbody>
  2852. <tr>
  2853. <td>
  2854. <code>privateKeySecretRef</code></br>
  2855. <em>
  2856. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2857. External Secrets meta/v1.SecretKeySelector
  2858. </a>
  2859. </em>
  2860. </td>
  2861. <td>
  2862. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2863. </td>
  2864. </tr>
  2865. </tbody>
  2866. </table>
  2867. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  2868. </h3>
  2869. <p>
  2870. (<em>Appears on:</em>
  2871. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2872. </p>
  2873. <p>
  2874. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2875. </p>
  2876. <table>
  2877. <thead>
  2878. <tr>
  2879. <th>Field</th>
  2880. <th>Description</th>
  2881. </tr>
  2882. </thead>
  2883. <tbody>
  2884. <tr>
  2885. <td>
  2886. <code>auth</code></br>
  2887. <em>
  2888. <a href="#external-secrets.io/v1.ChefAuth">
  2889. ChefAuth
  2890. </a>
  2891. </em>
  2892. </td>
  2893. <td>
  2894. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2895. </td>
  2896. </tr>
  2897. <tr>
  2898. <td>
  2899. <code>username</code></br>
  2900. <em>
  2901. string
  2902. </em>
  2903. </td>
  2904. <td>
  2905. <p>UserName should be the user ID on the chef server</p>
  2906. </td>
  2907. </tr>
  2908. <tr>
  2909. <td>
  2910. <code>serverUrl</code></br>
  2911. <em>
  2912. string
  2913. </em>
  2914. </td>
  2915. <td>
  2916. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2917. </td>
  2918. </tr>
  2919. </tbody>
  2920. </table>
  2921. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  2922. </h3>
  2923. <p>
  2924. (<em>Appears on:</em>
  2925. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2926. </p>
  2927. <p>
  2928. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  2929. </p>
  2930. <table>
  2931. <thead>
  2932. <tr>
  2933. <th>Field</th>
  2934. <th>Description</th>
  2935. </tr>
  2936. </thead>
  2937. <tbody>
  2938. <tr>
  2939. <td>
  2940. <code>auth</code></br>
  2941. <em>
  2942. <a href="#external-secrets.io/v1.CSMAuth">
  2943. CSMAuth
  2944. </a>
  2945. </em>
  2946. </td>
  2947. <td>
  2948. </td>
  2949. </tr>
  2950. <tr>
  2951. <td>
  2952. <code>projectID</code></br>
  2953. <em>
  2954. string
  2955. </em>
  2956. </td>
  2957. <td>
  2958. <p>ProjectID is the project, which the secrets are stored in.</p>
  2959. </td>
  2960. </tr>
  2961. </tbody>
  2962. </table>
  2963. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  2964. </h3>
  2965. <p>
  2966. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  2967. </p>
  2968. <table>
  2969. <thead>
  2970. <tr>
  2971. <th>Field</th>
  2972. <th>Description</th>
  2973. </tr>
  2974. </thead>
  2975. <tbody>
  2976. <tr>
  2977. <td>
  2978. <code>metadata</code></br>
  2979. <em>
  2980. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2981. Kubernetes meta/v1.ObjectMeta
  2982. </a>
  2983. </em>
  2984. </td>
  2985. <td>
  2986. Refer to the Kubernetes API documentation for the fields of the
  2987. <code>metadata</code> field.
  2988. </td>
  2989. </tr>
  2990. <tr>
  2991. <td>
  2992. <code>spec</code></br>
  2993. <em>
  2994. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  2995. ClusterExternalSecretSpec
  2996. </a>
  2997. </em>
  2998. </td>
  2999. <td>
  3000. <br/>
  3001. <br/>
  3002. <table>
  3003. <tr>
  3004. <td>
  3005. <code>externalSecretSpec</code></br>
  3006. <em>
  3007. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3008. ExternalSecretSpec
  3009. </a>
  3010. </em>
  3011. </td>
  3012. <td>
  3013. <p>The spec for the ExternalSecrets to be created</p>
  3014. </td>
  3015. </tr>
  3016. <tr>
  3017. <td>
  3018. <code>externalSecretName</code></br>
  3019. <em>
  3020. string
  3021. </em>
  3022. </td>
  3023. <td>
  3024. <em>(Optional)</em>
  3025. <p>The name of the external secrets to be created.
  3026. Defaults to the name of the ClusterExternalSecret</p>
  3027. </td>
  3028. </tr>
  3029. <tr>
  3030. <td>
  3031. <code>externalSecretMetadata</code></br>
  3032. <em>
  3033. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3034. ExternalSecretMetadata
  3035. </a>
  3036. </em>
  3037. </td>
  3038. <td>
  3039. <em>(Optional)</em>
  3040. <p>The metadata of the external secrets to be created</p>
  3041. </td>
  3042. </tr>
  3043. <tr>
  3044. <td>
  3045. <code>namespaceSelector</code></br>
  3046. <em>
  3047. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3048. Kubernetes meta/v1.LabelSelector
  3049. </a>
  3050. </em>
  3051. </td>
  3052. <td>
  3053. <em>(Optional)</em>
  3054. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3055. Deprecated: Use NamespaceSelectors instead.</p>
  3056. </td>
  3057. </tr>
  3058. <tr>
  3059. <td>
  3060. <code>namespaceSelectors</code></br>
  3061. <em>
  3062. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3063. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3064. </a>
  3065. </em>
  3066. </td>
  3067. <td>
  3068. <em>(Optional)</em>
  3069. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3070. </td>
  3071. </tr>
  3072. <tr>
  3073. <td>
  3074. <code>namespaces</code></br>
  3075. <em>
  3076. []string
  3077. </em>
  3078. </td>
  3079. <td>
  3080. <em>(Optional)</em>
  3081. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3082. Deprecated: Use NamespaceSelectors instead.</p>
  3083. </td>
  3084. </tr>
  3085. <tr>
  3086. <td>
  3087. <code>refreshTime</code></br>
  3088. <em>
  3089. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3090. Kubernetes meta/v1.Duration
  3091. </a>
  3092. </em>
  3093. </td>
  3094. <td>
  3095. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3096. </td>
  3097. </tr>
  3098. </table>
  3099. </td>
  3100. </tr>
  3101. <tr>
  3102. <td>
  3103. <code>status</code></br>
  3104. <em>
  3105. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3106. ClusterExternalSecretStatus
  3107. </a>
  3108. </em>
  3109. </td>
  3110. <td>
  3111. </td>
  3112. </tr>
  3113. </tbody>
  3114. </table>
  3115. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3116. (<code>string</code> alias)</p></h3>
  3117. <p>
  3118. (<em>Appears on:</em>
  3119. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3120. </p>
  3121. <p>
  3122. </p>
  3123. <table>
  3124. <thead>
  3125. <tr>
  3126. <th>Value</th>
  3127. <th>Description</th>
  3128. </tr>
  3129. </thead>
  3130. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3131. <td></td>
  3132. </tr></tbody>
  3133. </table>
  3134. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3135. </h3>
  3136. <p>
  3137. (<em>Appears on:</em>
  3138. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3139. </p>
  3140. <p>
  3141. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3142. </p>
  3143. <table>
  3144. <thead>
  3145. <tr>
  3146. <th>Field</th>
  3147. <th>Description</th>
  3148. </tr>
  3149. </thead>
  3150. <tbody>
  3151. <tr>
  3152. <td>
  3153. <code>namespace</code></br>
  3154. <em>
  3155. string
  3156. </em>
  3157. </td>
  3158. <td>
  3159. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3160. </td>
  3161. </tr>
  3162. <tr>
  3163. <td>
  3164. <code>reason</code></br>
  3165. <em>
  3166. string
  3167. </em>
  3168. </td>
  3169. <td>
  3170. <em>(Optional)</em>
  3171. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3172. </td>
  3173. </tr>
  3174. </tbody>
  3175. </table>
  3176. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3177. </h3>
  3178. <p>
  3179. (<em>Appears on:</em>
  3180. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3181. </p>
  3182. <p>
  3183. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3184. </p>
  3185. <table>
  3186. <thead>
  3187. <tr>
  3188. <th>Field</th>
  3189. <th>Description</th>
  3190. </tr>
  3191. </thead>
  3192. <tbody>
  3193. <tr>
  3194. <td>
  3195. <code>externalSecretSpec</code></br>
  3196. <em>
  3197. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3198. ExternalSecretSpec
  3199. </a>
  3200. </em>
  3201. </td>
  3202. <td>
  3203. <p>The spec for the ExternalSecrets to be created</p>
  3204. </td>
  3205. </tr>
  3206. <tr>
  3207. <td>
  3208. <code>externalSecretName</code></br>
  3209. <em>
  3210. string
  3211. </em>
  3212. </td>
  3213. <td>
  3214. <em>(Optional)</em>
  3215. <p>The name of the external secrets to be created.
  3216. Defaults to the name of the ClusterExternalSecret</p>
  3217. </td>
  3218. </tr>
  3219. <tr>
  3220. <td>
  3221. <code>externalSecretMetadata</code></br>
  3222. <em>
  3223. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3224. ExternalSecretMetadata
  3225. </a>
  3226. </em>
  3227. </td>
  3228. <td>
  3229. <em>(Optional)</em>
  3230. <p>The metadata of the external secrets to be created</p>
  3231. </td>
  3232. </tr>
  3233. <tr>
  3234. <td>
  3235. <code>namespaceSelector</code></br>
  3236. <em>
  3237. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3238. Kubernetes meta/v1.LabelSelector
  3239. </a>
  3240. </em>
  3241. </td>
  3242. <td>
  3243. <em>(Optional)</em>
  3244. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3245. Deprecated: Use NamespaceSelectors instead.</p>
  3246. </td>
  3247. </tr>
  3248. <tr>
  3249. <td>
  3250. <code>namespaceSelectors</code></br>
  3251. <em>
  3252. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3253. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3254. </a>
  3255. </em>
  3256. </td>
  3257. <td>
  3258. <em>(Optional)</em>
  3259. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3260. </td>
  3261. </tr>
  3262. <tr>
  3263. <td>
  3264. <code>namespaces</code></br>
  3265. <em>
  3266. []string
  3267. </em>
  3268. </td>
  3269. <td>
  3270. <em>(Optional)</em>
  3271. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3272. Deprecated: Use NamespaceSelectors instead.</p>
  3273. </td>
  3274. </tr>
  3275. <tr>
  3276. <td>
  3277. <code>refreshTime</code></br>
  3278. <em>
  3279. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3280. Kubernetes meta/v1.Duration
  3281. </a>
  3282. </em>
  3283. </td>
  3284. <td>
  3285. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3286. </td>
  3287. </tr>
  3288. </tbody>
  3289. </table>
  3290. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3291. </h3>
  3292. <p>
  3293. (<em>Appears on:</em>
  3294. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3295. </p>
  3296. <p>
  3297. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3298. </p>
  3299. <table>
  3300. <thead>
  3301. <tr>
  3302. <th>Field</th>
  3303. <th>Description</th>
  3304. </tr>
  3305. </thead>
  3306. <tbody>
  3307. <tr>
  3308. <td>
  3309. <code>externalSecretName</code></br>
  3310. <em>
  3311. string
  3312. </em>
  3313. </td>
  3314. <td>
  3315. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3316. </td>
  3317. </tr>
  3318. <tr>
  3319. <td>
  3320. <code>failedNamespaces</code></br>
  3321. <em>
  3322. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3323. []ClusterExternalSecretNamespaceFailure
  3324. </a>
  3325. </em>
  3326. </td>
  3327. <td>
  3328. <em>(Optional)</em>
  3329. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3330. </td>
  3331. </tr>
  3332. <tr>
  3333. <td>
  3334. <code>provisionedNamespaces</code></br>
  3335. <em>
  3336. []string
  3337. </em>
  3338. </td>
  3339. <td>
  3340. <em>(Optional)</em>
  3341. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3342. </td>
  3343. </tr>
  3344. <tr>
  3345. <td>
  3346. <code>conditions</code></br>
  3347. <em>
  3348. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3349. []ClusterExternalSecretStatusCondition
  3350. </a>
  3351. </em>
  3352. </td>
  3353. <td>
  3354. <em>(Optional)</em>
  3355. </td>
  3356. </tr>
  3357. </tbody>
  3358. </table>
  3359. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3360. </h3>
  3361. <p>
  3362. (<em>Appears on:</em>
  3363. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3364. </p>
  3365. <p>
  3366. </p>
  3367. <table>
  3368. <thead>
  3369. <tr>
  3370. <th>Field</th>
  3371. <th>Description</th>
  3372. </tr>
  3373. </thead>
  3374. <tbody>
  3375. <tr>
  3376. <td>
  3377. <code>type</code></br>
  3378. <em>
  3379. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3380. ClusterExternalSecretConditionType
  3381. </a>
  3382. </em>
  3383. </td>
  3384. <td>
  3385. </td>
  3386. </tr>
  3387. <tr>
  3388. <td>
  3389. <code>status</code></br>
  3390. <em>
  3391. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3392. Kubernetes core/v1.ConditionStatus
  3393. </a>
  3394. </em>
  3395. </td>
  3396. <td>
  3397. </td>
  3398. </tr>
  3399. <tr>
  3400. <td>
  3401. <code>message</code></br>
  3402. <em>
  3403. string
  3404. </em>
  3405. </td>
  3406. <td>
  3407. <em>(Optional)</em>
  3408. </td>
  3409. </tr>
  3410. </tbody>
  3411. </table>
  3412. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3413. </h3>
  3414. <p>
  3415. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3416. </p>
  3417. <table>
  3418. <thead>
  3419. <tr>
  3420. <th>Field</th>
  3421. <th>Description</th>
  3422. </tr>
  3423. </thead>
  3424. <tbody>
  3425. <tr>
  3426. <td>
  3427. <code>metadata</code></br>
  3428. <em>
  3429. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3430. Kubernetes meta/v1.ObjectMeta
  3431. </a>
  3432. </em>
  3433. </td>
  3434. <td>
  3435. Refer to the Kubernetes API documentation for the fields of the
  3436. <code>metadata</code> field.
  3437. </td>
  3438. </tr>
  3439. <tr>
  3440. <td>
  3441. <code>spec</code></br>
  3442. <em>
  3443. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3444. SecretStoreSpec
  3445. </a>
  3446. </em>
  3447. </td>
  3448. <td>
  3449. <br/>
  3450. <br/>
  3451. <table>
  3452. <tr>
  3453. <td>
  3454. <code>controller</code></br>
  3455. <em>
  3456. string
  3457. </em>
  3458. </td>
  3459. <td>
  3460. <em>(Optional)</em>
  3461. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3462. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3463. </td>
  3464. </tr>
  3465. <tr>
  3466. <td>
  3467. <code>provider</code></br>
  3468. <em>
  3469. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3470. SecretStoreProvider
  3471. </a>
  3472. </em>
  3473. </td>
  3474. <td>
  3475. <p>Used to configure the provider. Only one provider may be set</p>
  3476. </td>
  3477. </tr>
  3478. <tr>
  3479. <td>
  3480. <code>retrySettings</code></br>
  3481. <em>
  3482. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3483. SecretStoreRetrySettings
  3484. </a>
  3485. </em>
  3486. </td>
  3487. <td>
  3488. <em>(Optional)</em>
  3489. <p>Used to configure http retries if failed</p>
  3490. </td>
  3491. </tr>
  3492. <tr>
  3493. <td>
  3494. <code>refreshInterval</code></br>
  3495. <em>
  3496. int
  3497. </em>
  3498. </td>
  3499. <td>
  3500. <em>(Optional)</em>
  3501. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3502. </td>
  3503. </tr>
  3504. <tr>
  3505. <td>
  3506. <code>conditions</code></br>
  3507. <em>
  3508. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3509. []ClusterSecretStoreCondition
  3510. </a>
  3511. </em>
  3512. </td>
  3513. <td>
  3514. <em>(Optional)</em>
  3515. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3516. </td>
  3517. </tr>
  3518. </table>
  3519. </td>
  3520. </tr>
  3521. <tr>
  3522. <td>
  3523. <code>status</code></br>
  3524. <em>
  3525. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3526. SecretStoreStatus
  3527. </a>
  3528. </em>
  3529. </td>
  3530. <td>
  3531. </td>
  3532. </tr>
  3533. </tbody>
  3534. </table>
  3535. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3536. </h3>
  3537. <p>
  3538. (<em>Appears on:</em>
  3539. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3540. </p>
  3541. <p>
  3542. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3543. for a ClusterSecretStore instance.</p>
  3544. </p>
  3545. <table>
  3546. <thead>
  3547. <tr>
  3548. <th>Field</th>
  3549. <th>Description</th>
  3550. </tr>
  3551. </thead>
  3552. <tbody>
  3553. <tr>
  3554. <td>
  3555. <code>namespaceSelector</code></br>
  3556. <em>
  3557. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3558. Kubernetes meta/v1.LabelSelector
  3559. </a>
  3560. </em>
  3561. </td>
  3562. <td>
  3563. <em>(Optional)</em>
  3564. <p>Choose namespace using a labelSelector</p>
  3565. </td>
  3566. </tr>
  3567. <tr>
  3568. <td>
  3569. <code>namespaces</code></br>
  3570. <em>
  3571. []string
  3572. </em>
  3573. </td>
  3574. <td>
  3575. <em>(Optional)</em>
  3576. <p>Choose namespaces by name</p>
  3577. </td>
  3578. </tr>
  3579. <tr>
  3580. <td>
  3581. <code>namespaceRegexes</code></br>
  3582. <em>
  3583. []string
  3584. </em>
  3585. </td>
  3586. <td>
  3587. <em>(Optional)</em>
  3588. <p>Choose namespaces by using regex matching</p>
  3589. </td>
  3590. </tr>
  3591. </tbody>
  3592. </table>
  3593. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3594. </h3>
  3595. <p>
  3596. (<em>Appears on:</em>
  3597. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3598. </p>
  3599. <p>
  3600. </p>
  3601. <table>
  3602. <thead>
  3603. <tr>
  3604. <th>Field</th>
  3605. <th>Description</th>
  3606. </tr>
  3607. </thead>
  3608. <tbody>
  3609. <tr>
  3610. <td>
  3611. <code>account</code></br>
  3612. <em>
  3613. string
  3614. </em>
  3615. </td>
  3616. <td>
  3617. <p>Account is the Conjur organization account name.</p>
  3618. </td>
  3619. </tr>
  3620. <tr>
  3621. <td>
  3622. <code>userRef</code></br>
  3623. <em>
  3624. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3625. External Secrets meta/v1.SecretKeySelector
  3626. </a>
  3627. </em>
  3628. </td>
  3629. <td>
  3630. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  3631. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3632. </td>
  3633. </tr>
  3634. <tr>
  3635. <td>
  3636. <code>apiKeyRef</code></br>
  3637. <em>
  3638. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3639. External Secrets meta/v1.SecretKeySelector
  3640. </a>
  3641. </em>
  3642. </td>
  3643. <td>
  3644. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  3645. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3646. </td>
  3647. </tr>
  3648. </tbody>
  3649. </table>
  3650. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  3651. </h3>
  3652. <p>
  3653. (<em>Appears on:</em>
  3654. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  3655. </p>
  3656. <p>
  3657. </p>
  3658. <table>
  3659. <thead>
  3660. <tr>
  3661. <th>Field</th>
  3662. <th>Description</th>
  3663. </tr>
  3664. </thead>
  3665. <tbody>
  3666. <tr>
  3667. <td>
  3668. <code>apikey</code></br>
  3669. <em>
  3670. <a href="#external-secrets.io/v1.ConjurAPIKey">
  3671. ConjurAPIKey
  3672. </a>
  3673. </em>
  3674. </td>
  3675. <td>
  3676. <em>(Optional)</em>
  3677. <p>Authenticates with Conjur using an API key.</p>
  3678. </td>
  3679. </tr>
  3680. <tr>
  3681. <td>
  3682. <code>jwt</code></br>
  3683. <em>
  3684. <a href="#external-secrets.io/v1.ConjurJWT">
  3685. ConjurJWT
  3686. </a>
  3687. </em>
  3688. </td>
  3689. <td>
  3690. <em>(Optional)</em>
  3691. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  3692. </td>
  3693. </tr>
  3694. </tbody>
  3695. </table>
  3696. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  3697. </h3>
  3698. <p>
  3699. (<em>Appears on:</em>
  3700. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3701. </p>
  3702. <p>
  3703. </p>
  3704. <table>
  3705. <thead>
  3706. <tr>
  3707. <th>Field</th>
  3708. <th>Description</th>
  3709. </tr>
  3710. </thead>
  3711. <tbody>
  3712. <tr>
  3713. <td>
  3714. <code>account</code></br>
  3715. <em>
  3716. string
  3717. </em>
  3718. </td>
  3719. <td>
  3720. <p>Account is the Conjur organization account name.</p>
  3721. </td>
  3722. </tr>
  3723. <tr>
  3724. <td>
  3725. <code>serviceID</code></br>
  3726. <em>
  3727. string
  3728. </em>
  3729. </td>
  3730. <td>
  3731. <p>The conjur authn jwt webservice id</p>
  3732. </td>
  3733. </tr>
  3734. <tr>
  3735. <td>
  3736. <code>hostId</code></br>
  3737. <em>
  3738. string
  3739. </em>
  3740. </td>
  3741. <td>
  3742. <em>(Optional)</em>
  3743. <p>Optional HostID for JWT authentication. This may be used depending
  3744. on how the Conjur JWT authenticator policy is configured.</p>
  3745. </td>
  3746. </tr>
  3747. <tr>
  3748. <td>
  3749. <code>secretRef</code></br>
  3750. <em>
  3751. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3752. External Secrets meta/v1.SecretKeySelector
  3753. </a>
  3754. </em>
  3755. </td>
  3756. <td>
  3757. <em>(Optional)</em>
  3758. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3759. authenticate with Conjur using the JWT authentication method.</p>
  3760. </td>
  3761. </tr>
  3762. <tr>
  3763. <td>
  3764. <code>serviceAccountRef</code></br>
  3765. <em>
  3766. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3767. External Secrets meta/v1.ServiceAccountSelector
  3768. </a>
  3769. </em>
  3770. </td>
  3771. <td>
  3772. <em>(Optional)</em>
  3773. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3774. a token for with the <code>TokenRequest</code> API.</p>
  3775. </td>
  3776. </tr>
  3777. </tbody>
  3778. </table>
  3779. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  3780. </h3>
  3781. <p>
  3782. (<em>Appears on:</em>
  3783. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3784. </p>
  3785. <p>
  3786. </p>
  3787. <table>
  3788. <thead>
  3789. <tr>
  3790. <th>Field</th>
  3791. <th>Description</th>
  3792. </tr>
  3793. </thead>
  3794. <tbody>
  3795. <tr>
  3796. <td>
  3797. <code>url</code></br>
  3798. <em>
  3799. string
  3800. </em>
  3801. </td>
  3802. <td>
  3803. <p>URL is the endpoint of the Conjur instance.</p>
  3804. </td>
  3805. </tr>
  3806. <tr>
  3807. <td>
  3808. <code>caBundle</code></br>
  3809. <em>
  3810. string
  3811. </em>
  3812. </td>
  3813. <td>
  3814. <em>(Optional)</em>
  3815. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  3816. </td>
  3817. </tr>
  3818. <tr>
  3819. <td>
  3820. <code>caProvider</code></br>
  3821. <em>
  3822. <a href="#external-secrets.io/v1.CAProvider">
  3823. CAProvider
  3824. </a>
  3825. </em>
  3826. </td>
  3827. <td>
  3828. <em>(Optional)</em>
  3829. <p>Used to provide custom certificate authority (CA) certificates
  3830. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  3831. that contains a PEM-encoded certificate.</p>
  3832. </td>
  3833. </tr>
  3834. <tr>
  3835. <td>
  3836. <code>auth</code></br>
  3837. <em>
  3838. <a href="#external-secrets.io/v1.ConjurAuth">
  3839. ConjurAuth
  3840. </a>
  3841. </em>
  3842. </td>
  3843. <td>
  3844. <p>Defines authentication settings for connecting to Conjur.</p>
  3845. </td>
  3846. </tr>
  3847. </tbody>
  3848. </table>
  3849. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  3850. </h3>
  3851. <p>
  3852. (<em>Appears on:</em>
  3853. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3854. </p>
  3855. <p>
  3856. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3857. </p>
  3858. <table>
  3859. <thead>
  3860. <tr>
  3861. <th>Field</th>
  3862. <th>Description</th>
  3863. </tr>
  3864. </thead>
  3865. <tbody>
  3866. <tr>
  3867. <td>
  3868. <code>clientId</code></br>
  3869. <em>
  3870. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3871. DelineaProviderSecretRef
  3872. </a>
  3873. </em>
  3874. </td>
  3875. <td>
  3876. <p>ClientID is the non-secret part of the credential.</p>
  3877. </td>
  3878. </tr>
  3879. <tr>
  3880. <td>
  3881. <code>clientSecret</code></br>
  3882. <em>
  3883. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3884. DelineaProviderSecretRef
  3885. </a>
  3886. </em>
  3887. </td>
  3888. <td>
  3889. <p>ClientSecret is the secret part of the credential.</p>
  3890. </td>
  3891. </tr>
  3892. <tr>
  3893. <td>
  3894. <code>tenant</code></br>
  3895. <em>
  3896. string
  3897. </em>
  3898. </td>
  3899. <td>
  3900. <p>Tenant is the chosen hostname / site name.</p>
  3901. </td>
  3902. </tr>
  3903. <tr>
  3904. <td>
  3905. <code>urlTemplate</code></br>
  3906. <em>
  3907. string
  3908. </em>
  3909. </td>
  3910. <td>
  3911. <em>(Optional)</em>
  3912. <p>URLTemplate
  3913. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3914. </td>
  3915. </tr>
  3916. <tr>
  3917. <td>
  3918. <code>tld</code></br>
  3919. <em>
  3920. string
  3921. </em>
  3922. </td>
  3923. <td>
  3924. <em>(Optional)</em>
  3925. <p>TLD is based on the server location that was chosen during provisioning.
  3926. If unset, defaults to &ldquo;com&rdquo;.</p>
  3927. </td>
  3928. </tr>
  3929. </tbody>
  3930. </table>
  3931. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3932. </h3>
  3933. <p>
  3934. (<em>Appears on:</em>
  3935. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  3936. </p>
  3937. <p>
  3938. </p>
  3939. <table>
  3940. <thead>
  3941. <tr>
  3942. <th>Field</th>
  3943. <th>Description</th>
  3944. </tr>
  3945. </thead>
  3946. <tbody>
  3947. <tr>
  3948. <td>
  3949. <code>value</code></br>
  3950. <em>
  3951. string
  3952. </em>
  3953. </td>
  3954. <td>
  3955. <em>(Optional)</em>
  3956. <p>Value can be specified directly to set a value without using a secret.</p>
  3957. </td>
  3958. </tr>
  3959. <tr>
  3960. <td>
  3961. <code>secretRef</code></br>
  3962. <em>
  3963. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3964. External Secrets meta/v1.SecretKeySelector
  3965. </a>
  3966. </em>
  3967. </td>
  3968. <td>
  3969. <em>(Optional)</em>
  3970. <p>SecretRef references a key in a secret that will be used as value.</p>
  3971. </td>
  3972. </tr>
  3973. </tbody>
  3974. </table>
  3975. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  3976. </h3>
  3977. <p>
  3978. (<em>Appears on:</em>
  3979. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  3980. </p>
  3981. <p>
  3982. </p>
  3983. <table>
  3984. <thead>
  3985. <tr>
  3986. <th>Field</th>
  3987. <th>Description</th>
  3988. </tr>
  3989. </thead>
  3990. <tbody>
  3991. <tr>
  3992. <td>
  3993. <code>secretRef</code></br>
  3994. <em>
  3995. <a href="#external-secrets.io/v1.Device42SecretRef">
  3996. Device42SecretRef
  3997. </a>
  3998. </em>
  3999. </td>
  4000. <td>
  4001. </td>
  4002. </tr>
  4003. </tbody>
  4004. </table>
  4005. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4006. </h3>
  4007. <p>
  4008. (<em>Appears on:</em>
  4009. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4010. </p>
  4011. <p>
  4012. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4013. </p>
  4014. <table>
  4015. <thead>
  4016. <tr>
  4017. <th>Field</th>
  4018. <th>Description</th>
  4019. </tr>
  4020. </thead>
  4021. <tbody>
  4022. <tr>
  4023. <td>
  4024. <code>host</code></br>
  4025. <em>
  4026. string
  4027. </em>
  4028. </td>
  4029. <td>
  4030. <p>URL configures the Device42 instance URL.</p>
  4031. </td>
  4032. </tr>
  4033. <tr>
  4034. <td>
  4035. <code>auth</code></br>
  4036. <em>
  4037. <a href="#external-secrets.io/v1.Device42Auth">
  4038. Device42Auth
  4039. </a>
  4040. </em>
  4041. </td>
  4042. <td>
  4043. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4044. </td>
  4045. </tr>
  4046. </tbody>
  4047. </table>
  4048. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4049. </h3>
  4050. <p>
  4051. (<em>Appears on:</em>
  4052. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4053. </p>
  4054. <p>
  4055. </p>
  4056. <table>
  4057. <thead>
  4058. <tr>
  4059. <th>Field</th>
  4060. <th>Description</th>
  4061. </tr>
  4062. </thead>
  4063. <tbody>
  4064. <tr>
  4065. <td>
  4066. <code>credentials</code></br>
  4067. <em>
  4068. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4069. External Secrets meta/v1.SecretKeySelector
  4070. </a>
  4071. </em>
  4072. </td>
  4073. <td>
  4074. <em>(Optional)</em>
  4075. <p>Username / Password is used for authentication.</p>
  4076. </td>
  4077. </tr>
  4078. </tbody>
  4079. </table>
  4080. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4081. </h3>
  4082. <p>
  4083. (<em>Appears on:</em>
  4084. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4085. </p>
  4086. <p>
  4087. </p>
  4088. <table>
  4089. <thead>
  4090. <tr>
  4091. <th>Field</th>
  4092. <th>Description</th>
  4093. </tr>
  4094. </thead>
  4095. <tbody>
  4096. <tr>
  4097. <td>
  4098. <code>secretRef</code></br>
  4099. <em>
  4100. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4101. DopplerAuthSecretRef
  4102. </a>
  4103. </em>
  4104. </td>
  4105. <td>
  4106. </td>
  4107. </tr>
  4108. </tbody>
  4109. </table>
  4110. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4111. </h3>
  4112. <p>
  4113. (<em>Appears on:</em>
  4114. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4115. </p>
  4116. <p>
  4117. </p>
  4118. <table>
  4119. <thead>
  4120. <tr>
  4121. <th>Field</th>
  4122. <th>Description</th>
  4123. </tr>
  4124. </thead>
  4125. <tbody>
  4126. <tr>
  4127. <td>
  4128. <code>dopplerToken</code></br>
  4129. <em>
  4130. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4131. External Secrets meta/v1.SecretKeySelector
  4132. </a>
  4133. </em>
  4134. </td>
  4135. <td>
  4136. <p>The DopplerToken is used for authentication.
  4137. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4138. The Key attribute defaults to dopplerToken if not specified.</p>
  4139. </td>
  4140. </tr>
  4141. </tbody>
  4142. </table>
  4143. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4144. </h3>
  4145. <p>
  4146. (<em>Appears on:</em>
  4147. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4148. </p>
  4149. <p>
  4150. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4151. Project and Config are required if not using a Service Token.</p>
  4152. </p>
  4153. <table>
  4154. <thead>
  4155. <tr>
  4156. <th>Field</th>
  4157. <th>Description</th>
  4158. </tr>
  4159. </thead>
  4160. <tbody>
  4161. <tr>
  4162. <td>
  4163. <code>auth</code></br>
  4164. <em>
  4165. <a href="#external-secrets.io/v1.DopplerAuth">
  4166. DopplerAuth
  4167. </a>
  4168. </em>
  4169. </td>
  4170. <td>
  4171. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4172. </td>
  4173. </tr>
  4174. <tr>
  4175. <td>
  4176. <code>project</code></br>
  4177. <em>
  4178. string
  4179. </em>
  4180. </td>
  4181. <td>
  4182. <em>(Optional)</em>
  4183. <p>Doppler project (required if not using a Service Token)</p>
  4184. </td>
  4185. </tr>
  4186. <tr>
  4187. <td>
  4188. <code>config</code></br>
  4189. <em>
  4190. string
  4191. </em>
  4192. </td>
  4193. <td>
  4194. <em>(Optional)</em>
  4195. <p>Doppler config (required if not using a Service Token)</p>
  4196. </td>
  4197. </tr>
  4198. <tr>
  4199. <td>
  4200. <code>nameTransformer</code></br>
  4201. <em>
  4202. string
  4203. </em>
  4204. </td>
  4205. <td>
  4206. <em>(Optional)</em>
  4207. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4208. </td>
  4209. </tr>
  4210. <tr>
  4211. <td>
  4212. <code>format</code></br>
  4213. <em>
  4214. string
  4215. </em>
  4216. </td>
  4217. <td>
  4218. <em>(Optional)</em>
  4219. <p>Format enables the downloading of secrets as a file (string)</p>
  4220. </td>
  4221. </tr>
  4222. </tbody>
  4223. </table>
  4224. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4225. </h3>
  4226. <p>
  4227. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4228. </p>
  4229. <table>
  4230. <thead>
  4231. <tr>
  4232. <th>Field</th>
  4233. <th>Description</th>
  4234. </tr>
  4235. </thead>
  4236. <tbody>
  4237. <tr>
  4238. <td>
  4239. <code>metadata</code></br>
  4240. <em>
  4241. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4242. Kubernetes meta/v1.ObjectMeta
  4243. </a>
  4244. </em>
  4245. </td>
  4246. <td>
  4247. Refer to the Kubernetes API documentation for the fields of the
  4248. <code>metadata</code> field.
  4249. </td>
  4250. </tr>
  4251. <tr>
  4252. <td>
  4253. <code>spec</code></br>
  4254. <em>
  4255. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4256. ExternalSecretSpec
  4257. </a>
  4258. </em>
  4259. </td>
  4260. <td>
  4261. <br/>
  4262. <br/>
  4263. <table>
  4264. <tr>
  4265. <td>
  4266. <code>secretStoreRef</code></br>
  4267. <em>
  4268. <a href="#external-secrets.io/v1.SecretStoreRef">
  4269. SecretStoreRef
  4270. </a>
  4271. </em>
  4272. </td>
  4273. <td>
  4274. <em>(Optional)</em>
  4275. </td>
  4276. </tr>
  4277. <tr>
  4278. <td>
  4279. <code>target</code></br>
  4280. <em>
  4281. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4282. ExternalSecretTarget
  4283. </a>
  4284. </em>
  4285. </td>
  4286. <td>
  4287. <em>(Optional)</em>
  4288. </td>
  4289. </tr>
  4290. <tr>
  4291. <td>
  4292. <code>refreshPolicy</code></br>
  4293. <em>
  4294. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4295. ExternalSecretRefreshPolicy
  4296. </a>
  4297. </em>
  4298. </td>
  4299. <td>
  4300. <em>(Optional)</em>
  4301. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4302. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4303. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4304. No periodic updates occur if refreshInterval is 0.
  4305. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4306. </td>
  4307. </tr>
  4308. <tr>
  4309. <td>
  4310. <code>refreshInterval</code></br>
  4311. <em>
  4312. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4313. Kubernetes meta/v1.Duration
  4314. </a>
  4315. </em>
  4316. </td>
  4317. <td>
  4318. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4319. specified as Golang Duration strings.
  4320. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4321. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4322. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4323. </td>
  4324. </tr>
  4325. <tr>
  4326. <td>
  4327. <code>data</code></br>
  4328. <em>
  4329. <a href="#external-secrets.io/v1.ExternalSecretData">
  4330. []ExternalSecretData
  4331. </a>
  4332. </em>
  4333. </td>
  4334. <td>
  4335. <em>(Optional)</em>
  4336. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4337. </td>
  4338. </tr>
  4339. <tr>
  4340. <td>
  4341. <code>dataFrom</code></br>
  4342. <em>
  4343. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4344. []ExternalSecretDataFromRemoteRef
  4345. </a>
  4346. </em>
  4347. </td>
  4348. <td>
  4349. <em>(Optional)</em>
  4350. <p>DataFrom is used to fetch all properties from a specific Provider data
  4351. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4352. </td>
  4353. </tr>
  4354. </table>
  4355. </td>
  4356. </tr>
  4357. <tr>
  4358. <td>
  4359. <code>status</code></br>
  4360. <em>
  4361. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4362. ExternalSecretStatus
  4363. </a>
  4364. </em>
  4365. </td>
  4366. <td>
  4367. </td>
  4368. </tr>
  4369. </tbody>
  4370. </table>
  4371. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4372. (<code>string</code> alias)</p></h3>
  4373. <p>
  4374. (<em>Appears on:</em>
  4375. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4376. </p>
  4377. <p>
  4378. </p>
  4379. <table>
  4380. <thead>
  4381. <tr>
  4382. <th>Value</th>
  4383. <th>Description</th>
  4384. </tr>
  4385. </thead>
  4386. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4387. <td></td>
  4388. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4389. <td></td>
  4390. </tr></tbody>
  4391. </table>
  4392. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4393. (<code>string</code> alias)</p></h3>
  4394. <p>
  4395. (<em>Appears on:</em>
  4396. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4397. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4398. </p>
  4399. <p>
  4400. </p>
  4401. <table>
  4402. <thead>
  4403. <tr>
  4404. <th>Value</th>
  4405. <th>Description</th>
  4406. </tr>
  4407. </thead>
  4408. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4409. <td></td>
  4410. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4411. <td></td>
  4412. </tr></tbody>
  4413. </table>
  4414. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4415. (<code>string</code> alias)</p></h3>
  4416. <p>
  4417. (<em>Appears on:</em>
  4418. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4419. </p>
  4420. <p>
  4421. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4422. </p>
  4423. <table>
  4424. <thead>
  4425. <tr>
  4426. <th>Value</th>
  4427. <th>Description</th>
  4428. </tr>
  4429. </thead>
  4430. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4431. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4432. </td>
  4433. </tr><tr><td><p>&#34;None&#34;</p></td>
  4434. <td><p>None does not create a Secret (future use with injector).</p>
  4435. </td>
  4436. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4437. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4438. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4439. </td>
  4440. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4441. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4442. </td>
  4443. </tr></tbody>
  4444. </table>
  4445. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4446. </h3>
  4447. <p>
  4448. (<em>Appears on:</em>
  4449. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4450. </p>
  4451. <p>
  4452. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4453. </p>
  4454. <table>
  4455. <thead>
  4456. <tr>
  4457. <th>Field</th>
  4458. <th>Description</th>
  4459. </tr>
  4460. </thead>
  4461. <tbody>
  4462. <tr>
  4463. <td>
  4464. <code>secretKey</code></br>
  4465. <em>
  4466. string
  4467. </em>
  4468. </td>
  4469. <td>
  4470. <p>The key in the Kubernetes Secret to store the value.</p>
  4471. </td>
  4472. </tr>
  4473. <tr>
  4474. <td>
  4475. <code>remoteRef</code></br>
  4476. <em>
  4477. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4478. ExternalSecretDataRemoteRef
  4479. </a>
  4480. </em>
  4481. </td>
  4482. <td>
  4483. <p>RemoteRef points to the remote secret and defines
  4484. which secret (version/property/..) to fetch.</p>
  4485. </td>
  4486. </tr>
  4487. <tr>
  4488. <td>
  4489. <code>sourceRef</code></br>
  4490. <em>
  4491. <a href="#external-secrets.io/v1.StoreSourceRef">
  4492. StoreSourceRef
  4493. </a>
  4494. </em>
  4495. </td>
  4496. <td>
  4497. <p>SourceRef allows you to override the source
  4498. from which the value will be pulled.</p>
  4499. </td>
  4500. </tr>
  4501. </tbody>
  4502. </table>
  4503. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4504. </h3>
  4505. <p>
  4506. (<em>Appears on:</em>
  4507. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4508. </p>
  4509. <p>
  4510. </p>
  4511. <table>
  4512. <thead>
  4513. <tr>
  4514. <th>Field</th>
  4515. <th>Description</th>
  4516. </tr>
  4517. </thead>
  4518. <tbody>
  4519. <tr>
  4520. <td>
  4521. <code>extract</code></br>
  4522. <em>
  4523. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4524. ExternalSecretDataRemoteRef
  4525. </a>
  4526. </em>
  4527. </td>
  4528. <td>
  4529. <em>(Optional)</em>
  4530. <p>Used to extract multiple key/value pairs from one secret
  4531. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4532. </td>
  4533. </tr>
  4534. <tr>
  4535. <td>
  4536. <code>find</code></br>
  4537. <em>
  4538. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4539. ExternalSecretFind
  4540. </a>
  4541. </em>
  4542. </td>
  4543. <td>
  4544. <em>(Optional)</em>
  4545. <p>Used to find secrets based on tags or regular expressions
  4546. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4547. </td>
  4548. </tr>
  4549. <tr>
  4550. <td>
  4551. <code>rewrite</code></br>
  4552. <em>
  4553. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4554. []ExternalSecretRewrite
  4555. </a>
  4556. </em>
  4557. </td>
  4558. <td>
  4559. <em>(Optional)</em>
  4560. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4561. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4562. </td>
  4563. </tr>
  4564. <tr>
  4565. <td>
  4566. <code>sourceRef</code></br>
  4567. <em>
  4568. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4569. StoreGeneratorSourceRef
  4570. </a>
  4571. </em>
  4572. </td>
  4573. <td>
  4574. <p>SourceRef points to a store or generator
  4575. which contains secret values ready to use.
  4576. Use this in combination with Extract or Find pull values out of
  4577. a specific SecretStore.
  4578. When sourceRef points to a generator Extract or Find is not supported.
  4579. The generator returns a static map of values</p>
  4580. </td>
  4581. </tr>
  4582. </tbody>
  4583. </table>
  4584. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4585. </h3>
  4586. <p>
  4587. (<em>Appears on:</em>
  4588. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4589. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4590. </p>
  4591. <p>
  4592. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4593. </p>
  4594. <table>
  4595. <thead>
  4596. <tr>
  4597. <th>Field</th>
  4598. <th>Description</th>
  4599. </tr>
  4600. </thead>
  4601. <tbody>
  4602. <tr>
  4603. <td>
  4604. <code>key</code></br>
  4605. <em>
  4606. string
  4607. </em>
  4608. </td>
  4609. <td>
  4610. <p>Key is the key used in the Provider, mandatory</p>
  4611. </td>
  4612. </tr>
  4613. <tr>
  4614. <td>
  4615. <code>metadataPolicy</code></br>
  4616. <em>
  4617. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  4618. ExternalSecretMetadataPolicy
  4619. </a>
  4620. </em>
  4621. </td>
  4622. <td>
  4623. <em>(Optional)</em>
  4624. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  4625. </td>
  4626. </tr>
  4627. <tr>
  4628. <td>
  4629. <code>property</code></br>
  4630. <em>
  4631. string
  4632. </em>
  4633. </td>
  4634. <td>
  4635. <em>(Optional)</em>
  4636. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4637. </td>
  4638. </tr>
  4639. <tr>
  4640. <td>
  4641. <code>version</code></br>
  4642. <em>
  4643. string
  4644. </em>
  4645. </td>
  4646. <td>
  4647. <em>(Optional)</em>
  4648. <p>Used to select a specific version of the Provider value, if supported</p>
  4649. </td>
  4650. </tr>
  4651. <tr>
  4652. <td>
  4653. <code>conversionStrategy</code></br>
  4654. <em>
  4655. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4656. ExternalSecretConversionStrategy
  4657. </a>
  4658. </em>
  4659. </td>
  4660. <td>
  4661. <em>(Optional)</em>
  4662. <p>Used to define a conversion Strategy</p>
  4663. </td>
  4664. </tr>
  4665. <tr>
  4666. <td>
  4667. <code>decodingStrategy</code></br>
  4668. <em>
  4669. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4670. ExternalSecretDecodingStrategy
  4671. </a>
  4672. </em>
  4673. </td>
  4674. <td>
  4675. <em>(Optional)</em>
  4676. <p>Used to define a decoding Strategy</p>
  4677. </td>
  4678. </tr>
  4679. </tbody>
  4680. </table>
  4681. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4682. (<code>string</code> alias)</p></h3>
  4683. <p>
  4684. (<em>Appears on:</em>
  4685. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4686. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4687. </p>
  4688. <p>
  4689. </p>
  4690. <table>
  4691. <thead>
  4692. <tr>
  4693. <th>Value</th>
  4694. <th>Description</th>
  4695. </tr>
  4696. </thead>
  4697. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4698. <td></td>
  4699. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4700. <td></td>
  4701. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4702. <td></td>
  4703. </tr><tr><td><p>&#34;None&#34;</p></td>
  4704. <td></td>
  4705. </tr></tbody>
  4706. </table>
  4707. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4708. (<code>string</code> alias)</p></h3>
  4709. <p>
  4710. (<em>Appears on:</em>
  4711. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4712. </p>
  4713. <p>
  4714. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4715. </p>
  4716. <table>
  4717. <thead>
  4718. <tr>
  4719. <th>Value</th>
  4720. <th>Description</th>
  4721. </tr>
  4722. </thead>
  4723. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  4724. <td><p>Delete deletes the secret if all provider secrets are deleted.
  4725. If a secret gets deleted on the provider side and is not accessible
  4726. anymore this is not considered an error and the ExternalSecret
  4727. does not go into SecretSyncedError status.</p>
  4728. </td>
  4729. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  4730. <td><p>Merge removes keys in the secret, but not the secret itself.
  4731. If a secret gets deleted on the provider side and is not accessible
  4732. anymore this is not considered an error and the ExternalSecret
  4733. does not go into SecretSyncedError status.</p>
  4734. </td>
  4735. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  4736. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  4737. If a provider secret does not exist the ExternalSecret gets into the
  4738. SecretSyncedError status.</p>
  4739. </td>
  4740. </tr></tbody>
  4741. </table>
  4742. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  4743. </h3>
  4744. <p>
  4745. (<em>Appears on:</em>
  4746. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4747. </p>
  4748. <p>
  4749. </p>
  4750. <table>
  4751. <thead>
  4752. <tr>
  4753. <th>Field</th>
  4754. <th>Description</th>
  4755. </tr>
  4756. </thead>
  4757. <tbody>
  4758. <tr>
  4759. <td>
  4760. <code>path</code></br>
  4761. <em>
  4762. string
  4763. </em>
  4764. </td>
  4765. <td>
  4766. <em>(Optional)</em>
  4767. <p>A root path to start the find operations.</p>
  4768. </td>
  4769. </tr>
  4770. <tr>
  4771. <td>
  4772. <code>name</code></br>
  4773. <em>
  4774. <a href="#external-secrets.io/v1.FindName">
  4775. FindName
  4776. </a>
  4777. </em>
  4778. </td>
  4779. <td>
  4780. <em>(Optional)</em>
  4781. <p>Finds secrets based on the name.</p>
  4782. </td>
  4783. </tr>
  4784. <tr>
  4785. <td>
  4786. <code>tags</code></br>
  4787. <em>
  4788. map[string]string
  4789. </em>
  4790. </td>
  4791. <td>
  4792. <em>(Optional)</em>
  4793. <p>Find secrets based on tags.</p>
  4794. </td>
  4795. </tr>
  4796. <tr>
  4797. <td>
  4798. <code>conversionStrategy</code></br>
  4799. <em>
  4800. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4801. ExternalSecretConversionStrategy
  4802. </a>
  4803. </em>
  4804. </td>
  4805. <td>
  4806. <em>(Optional)</em>
  4807. <p>Used to define a conversion Strategy</p>
  4808. </td>
  4809. </tr>
  4810. <tr>
  4811. <td>
  4812. <code>decodingStrategy</code></br>
  4813. <em>
  4814. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4815. ExternalSecretDecodingStrategy
  4816. </a>
  4817. </em>
  4818. </td>
  4819. <td>
  4820. <em>(Optional)</em>
  4821. <p>Used to define a decoding Strategy</p>
  4822. </td>
  4823. </tr>
  4824. </tbody>
  4825. </table>
  4826. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  4827. </h3>
  4828. <p>
  4829. (<em>Appears on:</em>
  4830. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  4831. </p>
  4832. <p>
  4833. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  4834. </p>
  4835. <table>
  4836. <thead>
  4837. <tr>
  4838. <th>Field</th>
  4839. <th>Description</th>
  4840. </tr>
  4841. </thead>
  4842. <tbody>
  4843. <tr>
  4844. <td>
  4845. <code>annotations</code></br>
  4846. <em>
  4847. map[string]string
  4848. </em>
  4849. </td>
  4850. <td>
  4851. <em>(Optional)</em>
  4852. </td>
  4853. </tr>
  4854. <tr>
  4855. <td>
  4856. <code>labels</code></br>
  4857. <em>
  4858. map[string]string
  4859. </em>
  4860. </td>
  4861. <td>
  4862. <em>(Optional)</em>
  4863. </td>
  4864. </tr>
  4865. </tbody>
  4866. </table>
  4867. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4868. (<code>string</code> alias)</p></h3>
  4869. <p>
  4870. (<em>Appears on:</em>
  4871. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4872. </p>
  4873. <p>
  4874. </p>
  4875. <table>
  4876. <thead>
  4877. <tr>
  4878. <th>Value</th>
  4879. <th>Description</th>
  4880. </tr>
  4881. </thead>
  4882. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4883. <td></td>
  4884. </tr><tr><td><p>&#34;None&#34;</p></td>
  4885. <td></td>
  4886. </tr></tbody>
  4887. </table>
  4888. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  4889. (<code>string</code> alias)</p></h3>
  4890. <p>
  4891. (<em>Appears on:</em>
  4892. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4893. </p>
  4894. <p>
  4895. </p>
  4896. <table>
  4897. <thead>
  4898. <tr>
  4899. <th>Value</th>
  4900. <th>Description</th>
  4901. </tr>
  4902. </thead>
  4903. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  4904. <td></td>
  4905. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  4906. <td></td>
  4907. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  4908. <td></td>
  4909. </tr></tbody>
  4910. </table>
  4911. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  4912. </h3>
  4913. <p>
  4914. (<em>Appears on:</em>
  4915. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4916. </p>
  4917. <p>
  4918. </p>
  4919. <table>
  4920. <thead>
  4921. <tr>
  4922. <th>Field</th>
  4923. <th>Description</th>
  4924. </tr>
  4925. </thead>
  4926. <tbody>
  4927. <tr>
  4928. <td>
  4929. <code>regexp</code></br>
  4930. <em>
  4931. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  4932. ExternalSecretRewriteRegexp
  4933. </a>
  4934. </em>
  4935. </td>
  4936. <td>
  4937. <em>(Optional)</em>
  4938. <p>Used to rewrite with regular expressions.
  4939. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4940. </td>
  4941. </tr>
  4942. <tr>
  4943. <td>
  4944. <code>transform</code></br>
  4945. <em>
  4946. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  4947. ExternalSecretRewriteTransform
  4948. </a>
  4949. </em>
  4950. </td>
  4951. <td>
  4952. <em>(Optional)</em>
  4953. <p>Used to apply string transformation on the secrets.
  4954. The resulting key will be the output of the template applied by the operation.</p>
  4955. </td>
  4956. </tr>
  4957. </tbody>
  4958. </table>
  4959. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  4960. </h3>
  4961. <p>
  4962. (<em>Appears on:</em>
  4963. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4964. </p>
  4965. <p>
  4966. </p>
  4967. <table>
  4968. <thead>
  4969. <tr>
  4970. <th>Field</th>
  4971. <th>Description</th>
  4972. </tr>
  4973. </thead>
  4974. <tbody>
  4975. <tr>
  4976. <td>
  4977. <code>source</code></br>
  4978. <em>
  4979. string
  4980. </em>
  4981. </td>
  4982. <td>
  4983. <p>Used to define the regular expression of a re.Compiler.</p>
  4984. </td>
  4985. </tr>
  4986. <tr>
  4987. <td>
  4988. <code>target</code></br>
  4989. <em>
  4990. string
  4991. </em>
  4992. </td>
  4993. <td>
  4994. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  4995. </td>
  4996. </tr>
  4997. </tbody>
  4998. </table>
  4999. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5000. </h3>
  5001. <p>
  5002. (<em>Appears on:</em>
  5003. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5004. </p>
  5005. <p>
  5006. </p>
  5007. <table>
  5008. <thead>
  5009. <tr>
  5010. <th>Field</th>
  5011. <th>Description</th>
  5012. </tr>
  5013. </thead>
  5014. <tbody>
  5015. <tr>
  5016. <td>
  5017. <code>template</code></br>
  5018. <em>
  5019. string
  5020. </em>
  5021. </td>
  5022. <td>
  5023. <p>Used to define the template to apply on the secret name.
  5024. <code>.value</code> will specify the secret name in the template.</p>
  5025. </td>
  5026. </tr>
  5027. </tbody>
  5028. </table>
  5029. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5030. </h3>
  5031. <p>
  5032. (<em>Appears on:</em>
  5033. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5034. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5035. </p>
  5036. <p>
  5037. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5038. </p>
  5039. <table>
  5040. <thead>
  5041. <tr>
  5042. <th>Field</th>
  5043. <th>Description</th>
  5044. </tr>
  5045. </thead>
  5046. <tbody>
  5047. <tr>
  5048. <td>
  5049. <code>secretStoreRef</code></br>
  5050. <em>
  5051. <a href="#external-secrets.io/v1.SecretStoreRef">
  5052. SecretStoreRef
  5053. </a>
  5054. </em>
  5055. </td>
  5056. <td>
  5057. <em>(Optional)</em>
  5058. </td>
  5059. </tr>
  5060. <tr>
  5061. <td>
  5062. <code>target</code></br>
  5063. <em>
  5064. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5065. ExternalSecretTarget
  5066. </a>
  5067. </em>
  5068. </td>
  5069. <td>
  5070. <em>(Optional)</em>
  5071. </td>
  5072. </tr>
  5073. <tr>
  5074. <td>
  5075. <code>refreshPolicy</code></br>
  5076. <em>
  5077. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5078. ExternalSecretRefreshPolicy
  5079. </a>
  5080. </em>
  5081. </td>
  5082. <td>
  5083. <em>(Optional)</em>
  5084. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5085. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5086. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5087. No periodic updates occur if refreshInterval is 0.
  5088. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5089. </td>
  5090. </tr>
  5091. <tr>
  5092. <td>
  5093. <code>refreshInterval</code></br>
  5094. <em>
  5095. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5096. Kubernetes meta/v1.Duration
  5097. </a>
  5098. </em>
  5099. </td>
  5100. <td>
  5101. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5102. specified as Golang Duration strings.
  5103. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5104. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5105. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5106. </td>
  5107. </tr>
  5108. <tr>
  5109. <td>
  5110. <code>data</code></br>
  5111. <em>
  5112. <a href="#external-secrets.io/v1.ExternalSecretData">
  5113. []ExternalSecretData
  5114. </a>
  5115. </em>
  5116. </td>
  5117. <td>
  5118. <em>(Optional)</em>
  5119. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5120. </td>
  5121. </tr>
  5122. <tr>
  5123. <td>
  5124. <code>dataFrom</code></br>
  5125. <em>
  5126. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5127. []ExternalSecretDataFromRemoteRef
  5128. </a>
  5129. </em>
  5130. </td>
  5131. <td>
  5132. <em>(Optional)</em>
  5133. <p>DataFrom is used to fetch all properties from a specific Provider data
  5134. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5135. </td>
  5136. </tr>
  5137. </tbody>
  5138. </table>
  5139. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5140. </h3>
  5141. <p>
  5142. (<em>Appears on:</em>
  5143. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5144. </p>
  5145. <p>
  5146. </p>
  5147. <table>
  5148. <thead>
  5149. <tr>
  5150. <th>Field</th>
  5151. <th>Description</th>
  5152. </tr>
  5153. </thead>
  5154. <tbody>
  5155. <tr>
  5156. <td>
  5157. <code>refreshTime</code></br>
  5158. <em>
  5159. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5160. Kubernetes meta/v1.Time
  5161. </a>
  5162. </em>
  5163. </td>
  5164. <td>
  5165. <p>refreshTime is the time and date the external secret was fetched and
  5166. the target secret updated</p>
  5167. </td>
  5168. </tr>
  5169. <tr>
  5170. <td>
  5171. <code>syncedResourceVersion</code></br>
  5172. <em>
  5173. string
  5174. </em>
  5175. </td>
  5176. <td>
  5177. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5178. </td>
  5179. </tr>
  5180. <tr>
  5181. <td>
  5182. <code>conditions</code></br>
  5183. <em>
  5184. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5185. []ExternalSecretStatusCondition
  5186. </a>
  5187. </em>
  5188. </td>
  5189. <td>
  5190. <em>(Optional)</em>
  5191. </td>
  5192. </tr>
  5193. <tr>
  5194. <td>
  5195. <code>binding</code></br>
  5196. <em>
  5197. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5198. Kubernetes core/v1.LocalObjectReference
  5199. </a>
  5200. </em>
  5201. </td>
  5202. <td>
  5203. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5204. </td>
  5205. </tr>
  5206. </tbody>
  5207. </table>
  5208. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5209. </h3>
  5210. <p>
  5211. (<em>Appears on:</em>
  5212. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5213. </p>
  5214. <p>
  5215. </p>
  5216. <table>
  5217. <thead>
  5218. <tr>
  5219. <th>Field</th>
  5220. <th>Description</th>
  5221. </tr>
  5222. </thead>
  5223. <tbody>
  5224. <tr>
  5225. <td>
  5226. <code>type</code></br>
  5227. <em>
  5228. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5229. ExternalSecretConditionType
  5230. </a>
  5231. </em>
  5232. </td>
  5233. <td>
  5234. </td>
  5235. </tr>
  5236. <tr>
  5237. <td>
  5238. <code>status</code></br>
  5239. <em>
  5240. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5241. Kubernetes core/v1.ConditionStatus
  5242. </a>
  5243. </em>
  5244. </td>
  5245. <td>
  5246. </td>
  5247. </tr>
  5248. <tr>
  5249. <td>
  5250. <code>reason</code></br>
  5251. <em>
  5252. string
  5253. </em>
  5254. </td>
  5255. <td>
  5256. <em>(Optional)</em>
  5257. </td>
  5258. </tr>
  5259. <tr>
  5260. <td>
  5261. <code>message</code></br>
  5262. <em>
  5263. string
  5264. </em>
  5265. </td>
  5266. <td>
  5267. <em>(Optional)</em>
  5268. </td>
  5269. </tr>
  5270. <tr>
  5271. <td>
  5272. <code>lastTransitionTime</code></br>
  5273. <em>
  5274. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5275. Kubernetes meta/v1.Time
  5276. </a>
  5277. </em>
  5278. </td>
  5279. <td>
  5280. <em>(Optional)</em>
  5281. </td>
  5282. </tr>
  5283. </tbody>
  5284. </table>
  5285. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5286. </h3>
  5287. <p>
  5288. (<em>Appears on:</em>
  5289. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5290. </p>
  5291. <p>
  5292. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5293. There can be only one target per ExternalSecret.</p>
  5294. </p>
  5295. <table>
  5296. <thead>
  5297. <tr>
  5298. <th>Field</th>
  5299. <th>Description</th>
  5300. </tr>
  5301. </thead>
  5302. <tbody>
  5303. <tr>
  5304. <td>
  5305. <code>name</code></br>
  5306. <em>
  5307. string
  5308. </em>
  5309. </td>
  5310. <td>
  5311. <em>(Optional)</em>
  5312. <p>The name of the Secret resource to be managed.
  5313. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5314. </td>
  5315. </tr>
  5316. <tr>
  5317. <td>
  5318. <code>creationPolicy</code></br>
  5319. <em>
  5320. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5321. ExternalSecretCreationPolicy
  5322. </a>
  5323. </em>
  5324. </td>
  5325. <td>
  5326. <em>(Optional)</em>
  5327. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5328. Defaults to &ldquo;Owner&rdquo;</p>
  5329. </td>
  5330. </tr>
  5331. <tr>
  5332. <td>
  5333. <code>deletionPolicy</code></br>
  5334. <em>
  5335. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5336. ExternalSecretDeletionPolicy
  5337. </a>
  5338. </em>
  5339. </td>
  5340. <td>
  5341. <em>(Optional)</em>
  5342. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5343. Defaults to &ldquo;Retain&rdquo;</p>
  5344. </td>
  5345. </tr>
  5346. <tr>
  5347. <td>
  5348. <code>template</code></br>
  5349. <em>
  5350. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5351. ExternalSecretTemplate
  5352. </a>
  5353. </em>
  5354. </td>
  5355. <td>
  5356. <em>(Optional)</em>
  5357. <p>Template defines a blueprint for the created Secret resource.</p>
  5358. </td>
  5359. </tr>
  5360. <tr>
  5361. <td>
  5362. <code>immutable</code></br>
  5363. <em>
  5364. bool
  5365. </em>
  5366. </td>
  5367. <td>
  5368. <em>(Optional)</em>
  5369. <p>Immutable defines if the final secret will be immutable</p>
  5370. </td>
  5371. </tr>
  5372. </tbody>
  5373. </table>
  5374. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5375. </h3>
  5376. <p>
  5377. (<em>Appears on:</em>
  5378. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5379. </p>
  5380. <p>
  5381. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5382. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5383. </p>
  5384. <table>
  5385. <thead>
  5386. <tr>
  5387. <th>Field</th>
  5388. <th>Description</th>
  5389. </tr>
  5390. </thead>
  5391. <tbody>
  5392. <tr>
  5393. <td>
  5394. <code>type</code></br>
  5395. <em>
  5396. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5397. Kubernetes core/v1.SecretType
  5398. </a>
  5399. </em>
  5400. </td>
  5401. <td>
  5402. <em>(Optional)</em>
  5403. </td>
  5404. </tr>
  5405. <tr>
  5406. <td>
  5407. <code>engineVersion</code></br>
  5408. <em>
  5409. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5410. TemplateEngineVersion
  5411. </a>
  5412. </em>
  5413. </td>
  5414. <td>
  5415. <p>EngineVersion specifies the template engine version
  5416. that should be used to compile/execute the
  5417. template specified in .data and .templateFrom[].</p>
  5418. </td>
  5419. </tr>
  5420. <tr>
  5421. <td>
  5422. <code>metadata</code></br>
  5423. <em>
  5424. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5425. ExternalSecretTemplateMetadata
  5426. </a>
  5427. </em>
  5428. </td>
  5429. <td>
  5430. <em>(Optional)</em>
  5431. </td>
  5432. </tr>
  5433. <tr>
  5434. <td>
  5435. <code>mergePolicy</code></br>
  5436. <em>
  5437. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5438. TemplateMergePolicy
  5439. </a>
  5440. </em>
  5441. </td>
  5442. <td>
  5443. </td>
  5444. </tr>
  5445. <tr>
  5446. <td>
  5447. <code>data</code></br>
  5448. <em>
  5449. map[string]string
  5450. </em>
  5451. </td>
  5452. <td>
  5453. <em>(Optional)</em>
  5454. </td>
  5455. </tr>
  5456. <tr>
  5457. <td>
  5458. <code>templateFrom</code></br>
  5459. <em>
  5460. <a href="#external-secrets.io/v1.TemplateFrom">
  5461. []TemplateFrom
  5462. </a>
  5463. </em>
  5464. </td>
  5465. <td>
  5466. <em>(Optional)</em>
  5467. </td>
  5468. </tr>
  5469. </tbody>
  5470. </table>
  5471. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5472. </h3>
  5473. <p>
  5474. (<em>Appears on:</em>
  5475. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5476. </p>
  5477. <p>
  5478. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5479. </p>
  5480. <table>
  5481. <thead>
  5482. <tr>
  5483. <th>Field</th>
  5484. <th>Description</th>
  5485. </tr>
  5486. </thead>
  5487. <tbody>
  5488. <tr>
  5489. <td>
  5490. <code>annotations</code></br>
  5491. <em>
  5492. map[string]string
  5493. </em>
  5494. </td>
  5495. <td>
  5496. <em>(Optional)</em>
  5497. </td>
  5498. </tr>
  5499. <tr>
  5500. <td>
  5501. <code>labels</code></br>
  5502. <em>
  5503. map[string]string
  5504. </em>
  5505. </td>
  5506. <td>
  5507. <em>(Optional)</em>
  5508. </td>
  5509. </tr>
  5510. </tbody>
  5511. </table>
  5512. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  5513. </h3>
  5514. <p>
  5515. </p>
  5516. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  5517. </h3>
  5518. <p>
  5519. (<em>Appears on:</em>
  5520. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5521. </p>
  5522. <p>
  5523. <p>FakeProvider configures a fake provider that returns static values.</p>
  5524. </p>
  5525. <table>
  5526. <thead>
  5527. <tr>
  5528. <th>Field</th>
  5529. <th>Description</th>
  5530. </tr>
  5531. </thead>
  5532. <tbody>
  5533. <tr>
  5534. <td>
  5535. <code>data</code></br>
  5536. <em>
  5537. <a href="#external-secrets.io/v1.FakeProviderData">
  5538. []FakeProviderData
  5539. </a>
  5540. </em>
  5541. </td>
  5542. <td>
  5543. </td>
  5544. </tr>
  5545. </tbody>
  5546. </table>
  5547. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  5548. </h3>
  5549. <p>
  5550. (<em>Appears on:</em>
  5551. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  5552. </p>
  5553. <p>
  5554. </p>
  5555. <table>
  5556. <thead>
  5557. <tr>
  5558. <th>Field</th>
  5559. <th>Description</th>
  5560. </tr>
  5561. </thead>
  5562. <tbody>
  5563. <tr>
  5564. <td>
  5565. <code>key</code></br>
  5566. <em>
  5567. string
  5568. </em>
  5569. </td>
  5570. <td>
  5571. </td>
  5572. </tr>
  5573. <tr>
  5574. <td>
  5575. <code>value</code></br>
  5576. <em>
  5577. string
  5578. </em>
  5579. </td>
  5580. <td>
  5581. </td>
  5582. </tr>
  5583. <tr>
  5584. <td>
  5585. <code>version</code></br>
  5586. <em>
  5587. string
  5588. </em>
  5589. </td>
  5590. <td>
  5591. </td>
  5592. </tr>
  5593. </tbody>
  5594. </table>
  5595. <h3 id="external-secrets.io/v1.FindName">FindName
  5596. </h3>
  5597. <p>
  5598. (<em>Appears on:</em>
  5599. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5600. </p>
  5601. <p>
  5602. </p>
  5603. <table>
  5604. <thead>
  5605. <tr>
  5606. <th>Field</th>
  5607. <th>Description</th>
  5608. </tr>
  5609. </thead>
  5610. <tbody>
  5611. <tr>
  5612. <td>
  5613. <code>regexp</code></br>
  5614. <em>
  5615. string
  5616. </em>
  5617. </td>
  5618. <td>
  5619. <em>(Optional)</em>
  5620. <p>Finds secrets base</p>
  5621. </td>
  5622. </tr>
  5623. </tbody>
  5624. </table>
  5625. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  5626. </h3>
  5627. <p>
  5628. (<em>Appears on:</em>
  5629. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5630. </p>
  5631. <p>
  5632. </p>
  5633. <table>
  5634. <thead>
  5635. <tr>
  5636. <th>Field</th>
  5637. <th>Description</th>
  5638. </tr>
  5639. </thead>
  5640. <tbody>
  5641. <tr>
  5642. <td>
  5643. <code>apiUrl</code></br>
  5644. <em>
  5645. string
  5646. </em>
  5647. </td>
  5648. <td>
  5649. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  5650. </td>
  5651. </tr>
  5652. <tr>
  5653. <td>
  5654. <code>apiKey</code></br>
  5655. <em>
  5656. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  5657. FortanixProviderSecretRef
  5658. </a>
  5659. </em>
  5660. </td>
  5661. <td>
  5662. <p>APIKey is the API token to access SDKMS Applications.</p>
  5663. </td>
  5664. </tr>
  5665. </tbody>
  5666. </table>
  5667. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  5668. </h3>
  5669. <p>
  5670. (<em>Appears on:</em>
  5671. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  5672. </p>
  5673. <p>
  5674. </p>
  5675. <table>
  5676. <thead>
  5677. <tr>
  5678. <th>Field</th>
  5679. <th>Description</th>
  5680. </tr>
  5681. </thead>
  5682. <tbody>
  5683. <tr>
  5684. <td>
  5685. <code>secretRef</code></br>
  5686. <em>
  5687. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5688. External Secrets meta/v1.SecretKeySelector
  5689. </a>
  5690. </em>
  5691. </td>
  5692. <td>
  5693. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  5694. </td>
  5695. </tr>
  5696. </tbody>
  5697. </table>
  5698. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  5699. </h3>
  5700. <p>
  5701. (<em>Appears on:</em>
  5702. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  5703. </p>
  5704. <p>
  5705. </p>
  5706. <table>
  5707. <thead>
  5708. <tr>
  5709. <th>Field</th>
  5710. <th>Description</th>
  5711. </tr>
  5712. </thead>
  5713. <tbody>
  5714. <tr>
  5715. <td>
  5716. <code>secretRef</code></br>
  5717. <em>
  5718. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  5719. GCPSMAuthSecretRef
  5720. </a>
  5721. </em>
  5722. </td>
  5723. <td>
  5724. <em>(Optional)</em>
  5725. </td>
  5726. </tr>
  5727. <tr>
  5728. <td>
  5729. <code>workloadIdentity</code></br>
  5730. <em>
  5731. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  5732. GCPWorkloadIdentity
  5733. </a>
  5734. </em>
  5735. </td>
  5736. <td>
  5737. <em>(Optional)</em>
  5738. </td>
  5739. </tr>
  5740. </tbody>
  5741. </table>
  5742. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  5743. </h3>
  5744. <p>
  5745. (<em>Appears on:</em>
  5746. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5747. </p>
  5748. <p>
  5749. </p>
  5750. <table>
  5751. <thead>
  5752. <tr>
  5753. <th>Field</th>
  5754. <th>Description</th>
  5755. </tr>
  5756. </thead>
  5757. <tbody>
  5758. <tr>
  5759. <td>
  5760. <code>secretAccessKeySecretRef</code></br>
  5761. <em>
  5762. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5763. External Secrets meta/v1.SecretKeySelector
  5764. </a>
  5765. </em>
  5766. </td>
  5767. <td>
  5768. <em>(Optional)</em>
  5769. <p>The SecretAccessKey is used for authentication</p>
  5770. </td>
  5771. </tr>
  5772. </tbody>
  5773. </table>
  5774. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  5775. </h3>
  5776. <p>
  5777. (<em>Appears on:</em>
  5778. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5779. </p>
  5780. <p>
  5781. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  5782. </p>
  5783. <table>
  5784. <thead>
  5785. <tr>
  5786. <th>Field</th>
  5787. <th>Description</th>
  5788. </tr>
  5789. </thead>
  5790. <tbody>
  5791. <tr>
  5792. <td>
  5793. <code>auth</code></br>
  5794. <em>
  5795. <a href="#external-secrets.io/v1.GCPSMAuth">
  5796. GCPSMAuth
  5797. </a>
  5798. </em>
  5799. </td>
  5800. <td>
  5801. <em>(Optional)</em>
  5802. <p>Auth defines the information necessary to authenticate against GCP</p>
  5803. </td>
  5804. </tr>
  5805. <tr>
  5806. <td>
  5807. <code>projectID</code></br>
  5808. <em>
  5809. string
  5810. </em>
  5811. </td>
  5812. <td>
  5813. <p>ProjectID project where secret is located</p>
  5814. </td>
  5815. </tr>
  5816. <tr>
  5817. <td>
  5818. <code>location</code></br>
  5819. <em>
  5820. string
  5821. </em>
  5822. </td>
  5823. <td>
  5824. <p>Location optionally defines a location for a secret</p>
  5825. </td>
  5826. </tr>
  5827. </tbody>
  5828. </table>
  5829. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  5830. </h3>
  5831. <p>
  5832. (<em>Appears on:</em>
  5833. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5834. </p>
  5835. <p>
  5836. </p>
  5837. <table>
  5838. <thead>
  5839. <tr>
  5840. <th>Field</th>
  5841. <th>Description</th>
  5842. </tr>
  5843. </thead>
  5844. <tbody>
  5845. <tr>
  5846. <td>
  5847. <code>serviceAccountRef</code></br>
  5848. <em>
  5849. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5850. External Secrets meta/v1.ServiceAccountSelector
  5851. </a>
  5852. </em>
  5853. </td>
  5854. <td>
  5855. </td>
  5856. </tr>
  5857. <tr>
  5858. <td>
  5859. <code>clusterLocation</code></br>
  5860. <em>
  5861. string
  5862. </em>
  5863. </td>
  5864. <td>
  5865. <em>(Optional)</em>
  5866. <p>ClusterLocation is the location of the cluster
  5867. If not specified, it fetches information from the metadata server</p>
  5868. </td>
  5869. </tr>
  5870. <tr>
  5871. <td>
  5872. <code>clusterName</code></br>
  5873. <em>
  5874. string
  5875. </em>
  5876. </td>
  5877. <td>
  5878. <em>(Optional)</em>
  5879. <p>ClusterName is the name of the cluster
  5880. If not specified, it fetches information from the metadata server</p>
  5881. </td>
  5882. </tr>
  5883. <tr>
  5884. <td>
  5885. <code>clusterProjectID</code></br>
  5886. <em>
  5887. string
  5888. </em>
  5889. </td>
  5890. <td>
  5891. <em>(Optional)</em>
  5892. <p>ClusterProjectID is the project ID of the cluster
  5893. If not specified, it fetches information from the metadata server</p>
  5894. </td>
  5895. </tr>
  5896. </tbody>
  5897. </table>
  5898. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  5899. </h3>
  5900. <p>
  5901. (<em>Appears on:</em>
  5902. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  5903. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  5904. </p>
  5905. <p>
  5906. <p>GeneratorRef points to a generator custom resource.</p>
  5907. </p>
  5908. <table>
  5909. <thead>
  5910. <tr>
  5911. <th>Field</th>
  5912. <th>Description</th>
  5913. </tr>
  5914. </thead>
  5915. <tbody>
  5916. <tr>
  5917. <td>
  5918. <code>apiVersion</code></br>
  5919. <em>
  5920. string
  5921. </em>
  5922. </td>
  5923. <td>
  5924. <p>Specify the apiVersion of the generator resource</p>
  5925. </td>
  5926. </tr>
  5927. <tr>
  5928. <td>
  5929. <code>kind</code></br>
  5930. <em>
  5931. string
  5932. </em>
  5933. </td>
  5934. <td>
  5935. <p>Specify the Kind of the generator resource</p>
  5936. </td>
  5937. </tr>
  5938. <tr>
  5939. <td>
  5940. <code>name</code></br>
  5941. <em>
  5942. string
  5943. </em>
  5944. </td>
  5945. <td>
  5946. <p>Specify the name of the generator resource</p>
  5947. </td>
  5948. </tr>
  5949. </tbody>
  5950. </table>
  5951. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  5952. </h3>
  5953. <p>
  5954. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  5955. or a namespaced SecretStore.</p>
  5956. </p>
  5957. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  5958. </h3>
  5959. <p>
  5960. </p>
  5961. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  5962. </h3>
  5963. <p>
  5964. (<em>Appears on:</em>
  5965. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  5966. </p>
  5967. <p>
  5968. </p>
  5969. <table>
  5970. <thead>
  5971. <tr>
  5972. <th>Field</th>
  5973. <th>Description</th>
  5974. </tr>
  5975. </thead>
  5976. <tbody>
  5977. <tr>
  5978. <td>
  5979. <code>privateKey</code></br>
  5980. <em>
  5981. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5982. External Secrets meta/v1.SecretKeySelector
  5983. </a>
  5984. </em>
  5985. </td>
  5986. <td>
  5987. </td>
  5988. </tr>
  5989. </tbody>
  5990. </table>
  5991. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  5992. </h3>
  5993. <p>
  5994. (<em>Appears on:</em>
  5995. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5996. </p>
  5997. <p>
  5998. <p>Configures a store to push secrets to Github Actions.</p>
  5999. </p>
  6000. <table>
  6001. <thead>
  6002. <tr>
  6003. <th>Field</th>
  6004. <th>Description</th>
  6005. </tr>
  6006. </thead>
  6007. <tbody>
  6008. <tr>
  6009. <td>
  6010. <code>url</code></br>
  6011. <em>
  6012. string
  6013. </em>
  6014. </td>
  6015. <td>
  6016. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6017. </td>
  6018. </tr>
  6019. <tr>
  6020. <td>
  6021. <code>uploadURL</code></br>
  6022. <em>
  6023. string
  6024. </em>
  6025. </td>
  6026. <td>
  6027. <em>(Optional)</em>
  6028. <p>Upload URL for enterprise instances. Default to URL.</p>
  6029. </td>
  6030. </tr>
  6031. <tr>
  6032. <td>
  6033. <code>auth</code></br>
  6034. <em>
  6035. <a href="#external-secrets.io/v1.GithubAppAuth">
  6036. GithubAppAuth
  6037. </a>
  6038. </em>
  6039. </td>
  6040. <td>
  6041. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6042. </td>
  6043. </tr>
  6044. <tr>
  6045. <td>
  6046. <code>appID</code></br>
  6047. <em>
  6048. int64
  6049. </em>
  6050. </td>
  6051. <td>
  6052. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6053. </td>
  6054. </tr>
  6055. <tr>
  6056. <td>
  6057. <code>installationID</code></br>
  6058. <em>
  6059. int64
  6060. </em>
  6061. </td>
  6062. <td>
  6063. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6064. </td>
  6065. </tr>
  6066. <tr>
  6067. <td>
  6068. <code>organization</code></br>
  6069. <em>
  6070. string
  6071. </em>
  6072. </td>
  6073. <td>
  6074. <p>organization will be used to fetch secrets from the Github organization</p>
  6075. </td>
  6076. </tr>
  6077. <tr>
  6078. <td>
  6079. <code>repository</code></br>
  6080. <em>
  6081. string
  6082. </em>
  6083. </td>
  6084. <td>
  6085. <em>(Optional)</em>
  6086. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6087. </td>
  6088. </tr>
  6089. <tr>
  6090. <td>
  6091. <code>environment</code></br>
  6092. <em>
  6093. string
  6094. </em>
  6095. </td>
  6096. <td>
  6097. <em>(Optional)</em>
  6098. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6099. </td>
  6100. </tr>
  6101. </tbody>
  6102. </table>
  6103. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6104. </h3>
  6105. <p>
  6106. (<em>Appears on:</em>
  6107. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6108. </p>
  6109. <p>
  6110. </p>
  6111. <table>
  6112. <thead>
  6113. <tr>
  6114. <th>Field</th>
  6115. <th>Description</th>
  6116. </tr>
  6117. </thead>
  6118. <tbody>
  6119. <tr>
  6120. <td>
  6121. <code>SecretRef</code></br>
  6122. <em>
  6123. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6124. GitlabSecretRef
  6125. </a>
  6126. </em>
  6127. </td>
  6128. <td>
  6129. </td>
  6130. </tr>
  6131. </tbody>
  6132. </table>
  6133. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6134. </h3>
  6135. <p>
  6136. (<em>Appears on:</em>
  6137. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6138. </p>
  6139. <p>
  6140. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6141. </p>
  6142. <table>
  6143. <thead>
  6144. <tr>
  6145. <th>Field</th>
  6146. <th>Description</th>
  6147. </tr>
  6148. </thead>
  6149. <tbody>
  6150. <tr>
  6151. <td>
  6152. <code>url</code></br>
  6153. <em>
  6154. string
  6155. </em>
  6156. </td>
  6157. <td>
  6158. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6159. </td>
  6160. </tr>
  6161. <tr>
  6162. <td>
  6163. <code>auth</code></br>
  6164. <em>
  6165. <a href="#external-secrets.io/v1.GitlabAuth">
  6166. GitlabAuth
  6167. </a>
  6168. </em>
  6169. </td>
  6170. <td>
  6171. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6172. </td>
  6173. </tr>
  6174. <tr>
  6175. <td>
  6176. <code>projectID</code></br>
  6177. <em>
  6178. string
  6179. </em>
  6180. </td>
  6181. <td>
  6182. <p>ProjectID specifies a project where secrets are located.</p>
  6183. </td>
  6184. </tr>
  6185. <tr>
  6186. <td>
  6187. <code>inheritFromGroups</code></br>
  6188. <em>
  6189. bool
  6190. </em>
  6191. </td>
  6192. <td>
  6193. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6194. </td>
  6195. </tr>
  6196. <tr>
  6197. <td>
  6198. <code>groupIDs</code></br>
  6199. <em>
  6200. []string
  6201. </em>
  6202. </td>
  6203. <td>
  6204. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6205. </td>
  6206. </tr>
  6207. <tr>
  6208. <td>
  6209. <code>environment</code></br>
  6210. <em>
  6211. string
  6212. </em>
  6213. </td>
  6214. <td>
  6215. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6216. </td>
  6217. </tr>
  6218. </tbody>
  6219. </table>
  6220. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6221. </h3>
  6222. <p>
  6223. (<em>Appears on:</em>
  6224. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  6225. </p>
  6226. <p>
  6227. </p>
  6228. <table>
  6229. <thead>
  6230. <tr>
  6231. <th>Field</th>
  6232. <th>Description</th>
  6233. </tr>
  6234. </thead>
  6235. <tbody>
  6236. <tr>
  6237. <td>
  6238. <code>accessToken</code></br>
  6239. <em>
  6240. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6241. External Secrets meta/v1.SecretKeySelector
  6242. </a>
  6243. </em>
  6244. </td>
  6245. <td>
  6246. <p>AccessToken is used for authentication.</p>
  6247. </td>
  6248. </tr>
  6249. </tbody>
  6250. </table>
  6251. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  6252. </h3>
  6253. <p>
  6254. (<em>Appears on:</em>
  6255. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  6256. </p>
  6257. <p>
  6258. </p>
  6259. <table>
  6260. <thead>
  6261. <tr>
  6262. <th>Field</th>
  6263. <th>Description</th>
  6264. </tr>
  6265. </thead>
  6266. <tbody>
  6267. <tr>
  6268. <td>
  6269. <code>secretRef</code></br>
  6270. <em>
  6271. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  6272. IBMAuthSecretRef
  6273. </a>
  6274. </em>
  6275. </td>
  6276. <td>
  6277. </td>
  6278. </tr>
  6279. <tr>
  6280. <td>
  6281. <code>containerAuth</code></br>
  6282. <em>
  6283. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  6284. IBMAuthContainerAuth
  6285. </a>
  6286. </em>
  6287. </td>
  6288. <td>
  6289. </td>
  6290. </tr>
  6291. </tbody>
  6292. </table>
  6293. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  6294. </h3>
  6295. <p>
  6296. (<em>Appears on:</em>
  6297. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6298. </p>
  6299. <p>
  6300. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  6301. </p>
  6302. <table>
  6303. <thead>
  6304. <tr>
  6305. <th>Field</th>
  6306. <th>Description</th>
  6307. </tr>
  6308. </thead>
  6309. <tbody>
  6310. <tr>
  6311. <td>
  6312. <code>profile</code></br>
  6313. <em>
  6314. string
  6315. </em>
  6316. </td>
  6317. <td>
  6318. <p>the IBM Trusted Profile</p>
  6319. </td>
  6320. </tr>
  6321. <tr>
  6322. <td>
  6323. <code>tokenLocation</code></br>
  6324. <em>
  6325. string
  6326. </em>
  6327. </td>
  6328. <td>
  6329. <p>Location the token is mounted on the pod</p>
  6330. </td>
  6331. </tr>
  6332. <tr>
  6333. <td>
  6334. <code>iamEndpoint</code></br>
  6335. <em>
  6336. string
  6337. </em>
  6338. </td>
  6339. <td>
  6340. </td>
  6341. </tr>
  6342. </tbody>
  6343. </table>
  6344. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  6345. </h3>
  6346. <p>
  6347. (<em>Appears on:</em>
  6348. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6349. </p>
  6350. <p>
  6351. </p>
  6352. <table>
  6353. <thead>
  6354. <tr>
  6355. <th>Field</th>
  6356. <th>Description</th>
  6357. </tr>
  6358. </thead>
  6359. <tbody>
  6360. <tr>
  6361. <td>
  6362. <code>secretApiKeySecretRef</code></br>
  6363. <em>
  6364. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6365. External Secrets meta/v1.SecretKeySelector
  6366. </a>
  6367. </em>
  6368. </td>
  6369. <td>
  6370. <p>The SecretAccessKey is used for authentication</p>
  6371. </td>
  6372. </tr>
  6373. </tbody>
  6374. </table>
  6375. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  6376. </h3>
  6377. <p>
  6378. (<em>Appears on:</em>
  6379. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6380. </p>
  6381. <p>
  6382. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  6383. backend.</p>
  6384. </p>
  6385. <table>
  6386. <thead>
  6387. <tr>
  6388. <th>Field</th>
  6389. <th>Description</th>
  6390. </tr>
  6391. </thead>
  6392. <tbody>
  6393. <tr>
  6394. <td>
  6395. <code>auth</code></br>
  6396. <em>
  6397. <a href="#external-secrets.io/v1.IBMAuth">
  6398. IBMAuth
  6399. </a>
  6400. </em>
  6401. </td>
  6402. <td>
  6403. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  6404. </td>
  6405. </tr>
  6406. <tr>
  6407. <td>
  6408. <code>serviceUrl</code></br>
  6409. <em>
  6410. string
  6411. </em>
  6412. </td>
  6413. <td>
  6414. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  6415. </td>
  6416. </tr>
  6417. </tbody>
  6418. </table>
  6419. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  6420. </h3>
  6421. <p>
  6422. (<em>Appears on:</em>
  6423. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6424. </p>
  6425. <p>
  6426. </p>
  6427. <table>
  6428. <thead>
  6429. <tr>
  6430. <th>Field</th>
  6431. <th>Description</th>
  6432. </tr>
  6433. </thead>
  6434. <tbody>
  6435. <tr>
  6436. <td>
  6437. <code>universalAuthCredentials</code></br>
  6438. <em>
  6439. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  6440. UniversalAuthCredentials
  6441. </a>
  6442. </em>
  6443. </td>
  6444. <td>
  6445. <em>(Optional)</em>
  6446. </td>
  6447. </tr>
  6448. </tbody>
  6449. </table>
  6450. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  6451. </h3>
  6452. <p>
  6453. (<em>Appears on:</em>
  6454. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6455. </p>
  6456. <p>
  6457. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  6458. </p>
  6459. <table>
  6460. <thead>
  6461. <tr>
  6462. <th>Field</th>
  6463. <th>Description</th>
  6464. </tr>
  6465. </thead>
  6466. <tbody>
  6467. <tr>
  6468. <td>
  6469. <code>auth</code></br>
  6470. <em>
  6471. <a href="#external-secrets.io/v1.InfisicalAuth">
  6472. InfisicalAuth
  6473. </a>
  6474. </em>
  6475. </td>
  6476. <td>
  6477. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  6478. </td>
  6479. </tr>
  6480. <tr>
  6481. <td>
  6482. <code>secretsScope</code></br>
  6483. <em>
  6484. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  6485. MachineIdentityScopeInWorkspace
  6486. </a>
  6487. </em>
  6488. </td>
  6489. <td>
  6490. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  6491. </td>
  6492. </tr>
  6493. <tr>
  6494. <td>
  6495. <code>hostAPI</code></br>
  6496. <em>
  6497. string
  6498. </em>
  6499. </td>
  6500. <td>
  6501. <em>(Optional)</em>
  6502. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  6503. </td>
  6504. </tr>
  6505. </tbody>
  6506. </table>
  6507. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  6508. </h3>
  6509. <p>
  6510. (<em>Appears on:</em>
  6511. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6512. </p>
  6513. <p>
  6514. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  6515. </p>
  6516. <table>
  6517. <thead>
  6518. <tr>
  6519. <th>Field</th>
  6520. <th>Description</th>
  6521. </tr>
  6522. </thead>
  6523. <tbody>
  6524. <tr>
  6525. <td>
  6526. <code>authRef</code></br>
  6527. <em>
  6528. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6529. External Secrets meta/v1.SecretKeySelector
  6530. </a>
  6531. </em>
  6532. </td>
  6533. <td>
  6534. </td>
  6535. </tr>
  6536. <tr>
  6537. <td>
  6538. <code>folderID</code></br>
  6539. <em>
  6540. string
  6541. </em>
  6542. </td>
  6543. <td>
  6544. </td>
  6545. </tr>
  6546. </tbody>
  6547. </table>
  6548. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  6549. </h3>
  6550. <p>
  6551. (<em>Appears on:</em>
  6552. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6553. </p>
  6554. <p>
  6555. </p>
  6556. <table>
  6557. <thead>
  6558. <tr>
  6559. <th>Field</th>
  6560. <th>Description</th>
  6561. </tr>
  6562. </thead>
  6563. <tbody>
  6564. <tr>
  6565. <td>
  6566. <code>cert</code></br>
  6567. <em>
  6568. <a href="#external-secrets.io/v1.CertAuth">
  6569. CertAuth
  6570. </a>
  6571. </em>
  6572. </td>
  6573. <td>
  6574. <em>(Optional)</em>
  6575. <p>has both clientCert and clientKey as secretKeySelector</p>
  6576. </td>
  6577. </tr>
  6578. <tr>
  6579. <td>
  6580. <code>token</code></br>
  6581. <em>
  6582. <a href="#external-secrets.io/v1.TokenAuth">
  6583. TokenAuth
  6584. </a>
  6585. </em>
  6586. </td>
  6587. <td>
  6588. <em>(Optional)</em>
  6589. <p>use static token to authenticate with</p>
  6590. </td>
  6591. </tr>
  6592. <tr>
  6593. <td>
  6594. <code>serviceAccount</code></br>
  6595. <em>
  6596. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6597. External Secrets meta/v1.ServiceAccountSelector
  6598. </a>
  6599. </em>
  6600. </td>
  6601. <td>
  6602. <em>(Optional)</em>
  6603. <p>points to a service account that should be used for authentication</p>
  6604. </td>
  6605. </tr>
  6606. </tbody>
  6607. </table>
  6608. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  6609. </h3>
  6610. <p>
  6611. (<em>Appears on:</em>
  6612. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6613. </p>
  6614. <p>
  6615. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  6616. </p>
  6617. <table>
  6618. <thead>
  6619. <tr>
  6620. <th>Field</th>
  6621. <th>Description</th>
  6622. </tr>
  6623. </thead>
  6624. <tbody>
  6625. <tr>
  6626. <td>
  6627. <code>server</code></br>
  6628. <em>
  6629. <a href="#external-secrets.io/v1.KubernetesServer">
  6630. KubernetesServer
  6631. </a>
  6632. </em>
  6633. </td>
  6634. <td>
  6635. <em>(Optional)</em>
  6636. <p>configures the Kubernetes server Address.</p>
  6637. </td>
  6638. </tr>
  6639. <tr>
  6640. <td>
  6641. <code>auth</code></br>
  6642. <em>
  6643. <a href="#external-secrets.io/v1.KubernetesAuth">
  6644. KubernetesAuth
  6645. </a>
  6646. </em>
  6647. </td>
  6648. <td>
  6649. <em>(Optional)</em>
  6650. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  6651. </td>
  6652. </tr>
  6653. <tr>
  6654. <td>
  6655. <code>authRef</code></br>
  6656. <em>
  6657. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6658. External Secrets meta/v1.SecretKeySelector
  6659. </a>
  6660. </em>
  6661. </td>
  6662. <td>
  6663. <em>(Optional)</em>
  6664. <p>A reference to a secret that contains the auth information.</p>
  6665. </td>
  6666. </tr>
  6667. <tr>
  6668. <td>
  6669. <code>remoteNamespace</code></br>
  6670. <em>
  6671. string
  6672. </em>
  6673. </td>
  6674. <td>
  6675. <em>(Optional)</em>
  6676. <p>Remote namespace to fetch the secrets from</p>
  6677. </td>
  6678. </tr>
  6679. </tbody>
  6680. </table>
  6681. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  6682. </h3>
  6683. <p>
  6684. (<em>Appears on:</em>
  6685. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6686. </p>
  6687. <p>
  6688. </p>
  6689. <table>
  6690. <thead>
  6691. <tr>
  6692. <th>Field</th>
  6693. <th>Description</th>
  6694. </tr>
  6695. </thead>
  6696. <tbody>
  6697. <tr>
  6698. <td>
  6699. <code>url</code></br>
  6700. <em>
  6701. string
  6702. </em>
  6703. </td>
  6704. <td>
  6705. <em>(Optional)</em>
  6706. <p>configures the Kubernetes server Address.</p>
  6707. </td>
  6708. </tr>
  6709. <tr>
  6710. <td>
  6711. <code>caBundle</code></br>
  6712. <em>
  6713. []byte
  6714. </em>
  6715. </td>
  6716. <td>
  6717. <em>(Optional)</em>
  6718. <p>CABundle is a base64-encoded CA certificate</p>
  6719. </td>
  6720. </tr>
  6721. <tr>
  6722. <td>
  6723. <code>caProvider</code></br>
  6724. <em>
  6725. <a href="#external-secrets.io/v1.CAProvider">
  6726. CAProvider
  6727. </a>
  6728. </em>
  6729. </td>
  6730. <td>
  6731. <em>(Optional)</em>
  6732. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  6733. </td>
  6734. </tr>
  6735. </tbody>
  6736. </table>
  6737. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  6738. </h3>
  6739. <p>
  6740. (<em>Appears on:</em>
  6741. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6742. </p>
  6743. <p>
  6744. </p>
  6745. <table>
  6746. <thead>
  6747. <tr>
  6748. <th>Field</th>
  6749. <th>Description</th>
  6750. </tr>
  6751. </thead>
  6752. <tbody>
  6753. <tr>
  6754. <td>
  6755. <code>secretsPath</code></br>
  6756. <em>
  6757. string
  6758. </em>
  6759. </td>
  6760. <td>
  6761. <em>(Optional)</em>
  6762. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  6763. </td>
  6764. </tr>
  6765. <tr>
  6766. <td>
  6767. <code>recursive</code></br>
  6768. <em>
  6769. bool
  6770. </em>
  6771. </td>
  6772. <td>
  6773. <em>(Optional)</em>
  6774. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  6775. </td>
  6776. </tr>
  6777. <tr>
  6778. <td>
  6779. <code>environmentSlug</code></br>
  6780. <em>
  6781. string
  6782. </em>
  6783. </td>
  6784. <td>
  6785. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  6786. </td>
  6787. </tr>
  6788. <tr>
  6789. <td>
  6790. <code>projectSlug</code></br>
  6791. <em>
  6792. string
  6793. </em>
  6794. </td>
  6795. <td>
  6796. <p>ProjectSlug is the required slug identifier for the project.</p>
  6797. </td>
  6798. </tr>
  6799. <tr>
  6800. <td>
  6801. <code>expandSecretReferences</code></br>
  6802. <em>
  6803. bool
  6804. </em>
  6805. </td>
  6806. <td>
  6807. <em>(Optional)</em>
  6808. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  6809. </td>
  6810. </tr>
  6811. </tbody>
  6812. </table>
  6813. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  6814. (<code>bool</code> alias)</p></h3>
  6815. <p>
  6816. </p>
  6817. <table>
  6818. <thead>
  6819. <tr>
  6820. <th>Value</th>
  6821. <th>Description</th>
  6822. </tr>
  6823. </thead>
  6824. <tbody><tr><td><p>true</p></td>
  6825. <td></td>
  6826. </tr><tr><td><p>false</p></td>
  6827. <td></td>
  6828. </tr></tbody>
  6829. </table>
  6830. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  6831. </h3>
  6832. <p>
  6833. <p>NoSecretError shall be returned when a GetSecret can not find the
  6834. desired secret. This is used for deletionPolicy.</p>
  6835. </p>
  6836. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  6837. </h3>
  6838. <p>
  6839. <p>NotModifiedError to signal that the webhook received no changes,
  6840. and it should just return without doing anything.</p>
  6841. </p>
  6842. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  6843. </h3>
  6844. <p>
  6845. (<em>Appears on:</em>
  6846. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  6847. </p>
  6848. <p>
  6849. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  6850. </p>
  6851. <table>
  6852. <thead>
  6853. <tr>
  6854. <th>Field</th>
  6855. <th>Description</th>
  6856. </tr>
  6857. </thead>
  6858. <tbody>
  6859. <tr>
  6860. <td>
  6861. <code>apiKeyRef</code></br>
  6862. <em>
  6863. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6864. External Secrets meta/v1.SecretKeySelector
  6865. </a>
  6866. </em>
  6867. </td>
  6868. <td>
  6869. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  6870. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  6871. </td>
  6872. </tr>
  6873. <tr>
  6874. <td>
  6875. <code>passcodeRef</code></br>
  6876. <em>
  6877. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6878. External Secrets meta/v1.SecretKeySelector
  6879. </a>
  6880. </em>
  6881. </td>
  6882. <td>
  6883. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  6884. </td>
  6885. </tr>
  6886. </tbody>
  6887. </table>
  6888. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  6889. </h3>
  6890. <p>
  6891. (<em>Appears on:</em>
  6892. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6893. </p>
  6894. <p>
  6895. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  6896. Project and Config are required if not using a Service Token.</p>
  6897. </p>
  6898. <table>
  6899. <thead>
  6900. <tr>
  6901. <th>Field</th>
  6902. <th>Description</th>
  6903. </tr>
  6904. </thead>
  6905. <tbody>
  6906. <tr>
  6907. <td>
  6908. <code>auth</code></br>
  6909. <em>
  6910. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  6911. OnboardbaseAuthSecretRef
  6912. </a>
  6913. </em>
  6914. </td>
  6915. <td>
  6916. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  6917. </td>
  6918. </tr>
  6919. <tr>
  6920. <td>
  6921. <code>apiHost</code></br>
  6922. <em>
  6923. string
  6924. </em>
  6925. </td>
  6926. <td>
  6927. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  6928. </td>
  6929. </tr>
  6930. <tr>
  6931. <td>
  6932. <code>project</code></br>
  6933. <em>
  6934. string
  6935. </em>
  6936. </td>
  6937. <td>
  6938. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  6939. </td>
  6940. </tr>
  6941. <tr>
  6942. <td>
  6943. <code>environment</code></br>
  6944. <em>
  6945. string
  6946. </em>
  6947. </td>
  6948. <td>
  6949. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  6950. </td>
  6951. </tr>
  6952. </tbody>
  6953. </table>
  6954. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  6955. </h3>
  6956. <p>
  6957. (<em>Appears on:</em>
  6958. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  6959. </p>
  6960. <p>
  6961. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  6962. </p>
  6963. <table>
  6964. <thead>
  6965. <tr>
  6966. <th>Field</th>
  6967. <th>Description</th>
  6968. </tr>
  6969. </thead>
  6970. <tbody>
  6971. <tr>
  6972. <td>
  6973. <code>secretRef</code></br>
  6974. <em>
  6975. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  6976. OnePasswordAuthSecretRef
  6977. </a>
  6978. </em>
  6979. </td>
  6980. <td>
  6981. </td>
  6982. </tr>
  6983. </tbody>
  6984. </table>
  6985. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  6986. </h3>
  6987. <p>
  6988. (<em>Appears on:</em>
  6989. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  6990. </p>
  6991. <p>
  6992. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  6993. </p>
  6994. <table>
  6995. <thead>
  6996. <tr>
  6997. <th>Field</th>
  6998. <th>Description</th>
  6999. </tr>
  7000. </thead>
  7001. <tbody>
  7002. <tr>
  7003. <td>
  7004. <code>connectTokenSecretRef</code></br>
  7005. <em>
  7006. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7007. External Secrets meta/v1.SecretKeySelector
  7008. </a>
  7009. </em>
  7010. </td>
  7011. <td>
  7012. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  7013. </td>
  7014. </tr>
  7015. </tbody>
  7016. </table>
  7017. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  7018. </h3>
  7019. <p>
  7020. (<em>Appears on:</em>
  7021. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7022. </p>
  7023. <p>
  7024. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  7025. </p>
  7026. <table>
  7027. <thead>
  7028. <tr>
  7029. <th>Field</th>
  7030. <th>Description</th>
  7031. </tr>
  7032. </thead>
  7033. <tbody>
  7034. <tr>
  7035. <td>
  7036. <code>auth</code></br>
  7037. <em>
  7038. <a href="#external-secrets.io/v1.OnePasswordAuth">
  7039. OnePasswordAuth
  7040. </a>
  7041. </em>
  7042. </td>
  7043. <td>
  7044. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  7045. </td>
  7046. </tr>
  7047. <tr>
  7048. <td>
  7049. <code>connectHost</code></br>
  7050. <em>
  7051. string
  7052. </em>
  7053. </td>
  7054. <td>
  7055. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  7056. </td>
  7057. </tr>
  7058. <tr>
  7059. <td>
  7060. <code>vaults</code></br>
  7061. <em>
  7062. map[string]int
  7063. </em>
  7064. </td>
  7065. <td>
  7066. <p>Vaults defines which OnePassword vaults to search in which order</p>
  7067. </td>
  7068. </tr>
  7069. </tbody>
  7070. </table>
  7071. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  7072. </h3>
  7073. <p>
  7074. (<em>Appears on:</em>
  7075. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7076. </p>
  7077. <p>
  7078. </p>
  7079. <table>
  7080. <thead>
  7081. <tr>
  7082. <th>Field</th>
  7083. <th>Description</th>
  7084. </tr>
  7085. </thead>
  7086. <tbody>
  7087. <tr>
  7088. <td>
  7089. <code>tenancy</code></br>
  7090. <em>
  7091. string
  7092. </em>
  7093. </td>
  7094. <td>
  7095. <p>Tenancy is the tenancy OCID where user is located.</p>
  7096. </td>
  7097. </tr>
  7098. <tr>
  7099. <td>
  7100. <code>user</code></br>
  7101. <em>
  7102. string
  7103. </em>
  7104. </td>
  7105. <td>
  7106. <p>User is an access OCID specific to the account.</p>
  7107. </td>
  7108. </tr>
  7109. <tr>
  7110. <td>
  7111. <code>secretRef</code></br>
  7112. <em>
  7113. <a href="#external-secrets.io/v1.OracleSecretRef">
  7114. OracleSecretRef
  7115. </a>
  7116. </em>
  7117. </td>
  7118. <td>
  7119. <p>SecretRef to pass through sensitive information.</p>
  7120. </td>
  7121. </tr>
  7122. </tbody>
  7123. </table>
  7124. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  7125. (<code>string</code> alias)</p></h3>
  7126. <p>
  7127. (<em>Appears on:</em>
  7128. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7129. </p>
  7130. <p>
  7131. </p>
  7132. <table>
  7133. <thead>
  7134. <tr>
  7135. <th>Value</th>
  7136. <th>Description</th>
  7137. </tr>
  7138. </thead>
  7139. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  7140. <td><p>InstancePrincipal represents a instance principal.</p>
  7141. </td>
  7142. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  7143. <td><p>UserPrincipal represents a user principal.</p>
  7144. </td>
  7145. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  7146. <td><p>WorkloadPrincipal represents a workload principal.</p>
  7147. </td>
  7148. </tr></tbody>
  7149. </table>
  7150. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  7151. </h3>
  7152. <p>
  7153. (<em>Appears on:</em>
  7154. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7155. </p>
  7156. <p>
  7157. <p>Configures an store to sync secrets using a Oracle Vault
  7158. backend.</p>
  7159. </p>
  7160. <table>
  7161. <thead>
  7162. <tr>
  7163. <th>Field</th>
  7164. <th>Description</th>
  7165. </tr>
  7166. </thead>
  7167. <tbody>
  7168. <tr>
  7169. <td>
  7170. <code>region</code></br>
  7171. <em>
  7172. string
  7173. </em>
  7174. </td>
  7175. <td>
  7176. <p>Region is the region where vault is located.</p>
  7177. </td>
  7178. </tr>
  7179. <tr>
  7180. <td>
  7181. <code>vault</code></br>
  7182. <em>
  7183. string
  7184. </em>
  7185. </td>
  7186. <td>
  7187. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  7188. </td>
  7189. </tr>
  7190. <tr>
  7191. <td>
  7192. <code>compartment</code></br>
  7193. <em>
  7194. string
  7195. </em>
  7196. </td>
  7197. <td>
  7198. <em>(Optional)</em>
  7199. <p>Compartment is the vault compartment OCID.
  7200. Required for PushSecret</p>
  7201. </td>
  7202. </tr>
  7203. <tr>
  7204. <td>
  7205. <code>encryptionKey</code></br>
  7206. <em>
  7207. string
  7208. </em>
  7209. </td>
  7210. <td>
  7211. <em>(Optional)</em>
  7212. <p>EncryptionKey is the OCID of the encryption key within the vault.
  7213. Required for PushSecret</p>
  7214. </td>
  7215. </tr>
  7216. <tr>
  7217. <td>
  7218. <code>principalType</code></br>
  7219. <em>
  7220. <a href="#external-secrets.io/v1.OraclePrincipalType">
  7221. OraclePrincipalType
  7222. </a>
  7223. </em>
  7224. </td>
  7225. <td>
  7226. <em>(Optional)</em>
  7227. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  7228. determine the principal type. This optional field must be specified if using
  7229. workload identity.</p>
  7230. </td>
  7231. </tr>
  7232. <tr>
  7233. <td>
  7234. <code>auth</code></br>
  7235. <em>
  7236. <a href="#external-secrets.io/v1.OracleAuth">
  7237. OracleAuth
  7238. </a>
  7239. </em>
  7240. </td>
  7241. <td>
  7242. <em>(Optional)</em>
  7243. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  7244. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  7245. </td>
  7246. </tr>
  7247. <tr>
  7248. <td>
  7249. <code>serviceAccountRef</code></br>
  7250. <em>
  7251. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7252. External Secrets meta/v1.ServiceAccountSelector
  7253. </a>
  7254. </em>
  7255. </td>
  7256. <td>
  7257. <em>(Optional)</em>
  7258. <p>ServiceAccountRef specified the service account
  7259. that should be used when authenticating with WorkloadIdentity.</p>
  7260. </td>
  7261. </tr>
  7262. </tbody>
  7263. </table>
  7264. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  7265. </h3>
  7266. <p>
  7267. (<em>Appears on:</em>
  7268. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  7269. </p>
  7270. <p>
  7271. </p>
  7272. <table>
  7273. <thead>
  7274. <tr>
  7275. <th>Field</th>
  7276. <th>Description</th>
  7277. </tr>
  7278. </thead>
  7279. <tbody>
  7280. <tr>
  7281. <td>
  7282. <code>privatekey</code></br>
  7283. <em>
  7284. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7285. External Secrets meta/v1.SecretKeySelector
  7286. </a>
  7287. </em>
  7288. </td>
  7289. <td>
  7290. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  7291. </td>
  7292. </tr>
  7293. <tr>
  7294. <td>
  7295. <code>fingerprint</code></br>
  7296. <em>
  7297. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7298. External Secrets meta/v1.SecretKeySelector
  7299. </a>
  7300. </em>
  7301. </td>
  7302. <td>
  7303. <p>Fingerprint is the fingerprint of the API private key.</p>
  7304. </td>
  7305. </tr>
  7306. </tbody>
  7307. </table>
  7308. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  7309. </h3>
  7310. <p>
  7311. (<em>Appears on:</em>
  7312. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  7313. </p>
  7314. <p>
  7315. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  7316. </p>
  7317. <table>
  7318. <thead>
  7319. <tr>
  7320. <th>Field</th>
  7321. <th>Description</th>
  7322. </tr>
  7323. </thead>
  7324. <tbody>
  7325. <tr>
  7326. <td>
  7327. <code>passwordSecretRef</code></br>
  7328. <em>
  7329. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7330. External Secrets meta/v1.SecretKeySelector
  7331. </a>
  7332. </em>
  7333. </td>
  7334. <td>
  7335. </td>
  7336. </tr>
  7337. <tr>
  7338. <td>
  7339. <code>privateKeySecretRef</code></br>
  7340. <em>
  7341. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7342. External Secrets meta/v1.SecretKeySelector
  7343. </a>
  7344. </em>
  7345. </td>
  7346. <td>
  7347. </td>
  7348. </tr>
  7349. </tbody>
  7350. </table>
  7351. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  7352. </h3>
  7353. <p>
  7354. (<em>Appears on:</em>
  7355. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7356. </p>
  7357. <p>
  7358. </p>
  7359. <table>
  7360. <thead>
  7361. <tr>
  7362. <th>Field</th>
  7363. <th>Description</th>
  7364. </tr>
  7365. </thead>
  7366. <tbody>
  7367. <tr>
  7368. <td>
  7369. <code>auth</code></br>
  7370. <em>
  7371. <a href="#external-secrets.io/v1.PassboltAuth">
  7372. PassboltAuth
  7373. </a>
  7374. </em>
  7375. </td>
  7376. <td>
  7377. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  7378. </td>
  7379. </tr>
  7380. <tr>
  7381. <td>
  7382. <code>host</code></br>
  7383. <em>
  7384. string
  7385. </em>
  7386. </td>
  7387. <td>
  7388. <p>Host defines the Passbolt Server to connect to</p>
  7389. </td>
  7390. </tr>
  7391. </tbody>
  7392. </table>
  7393. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  7394. </h3>
  7395. <p>
  7396. (<em>Appears on:</em>
  7397. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  7398. </p>
  7399. <p>
  7400. </p>
  7401. <table>
  7402. <thead>
  7403. <tr>
  7404. <th>Field</th>
  7405. <th>Description</th>
  7406. </tr>
  7407. </thead>
  7408. <tbody>
  7409. <tr>
  7410. <td>
  7411. <code>secretRef</code></br>
  7412. <em>
  7413. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  7414. PasswordDepotSecretRef
  7415. </a>
  7416. </em>
  7417. </td>
  7418. <td>
  7419. </td>
  7420. </tr>
  7421. </tbody>
  7422. </table>
  7423. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  7424. </h3>
  7425. <p>
  7426. (<em>Appears on:</em>
  7427. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7428. </p>
  7429. <p>
  7430. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  7431. </p>
  7432. <table>
  7433. <thead>
  7434. <tr>
  7435. <th>Field</th>
  7436. <th>Description</th>
  7437. </tr>
  7438. </thead>
  7439. <tbody>
  7440. <tr>
  7441. <td>
  7442. <code>host</code></br>
  7443. <em>
  7444. string
  7445. </em>
  7446. </td>
  7447. <td>
  7448. <p>URL configures the Password Depot instance URL.</p>
  7449. </td>
  7450. </tr>
  7451. <tr>
  7452. <td>
  7453. <code>database</code></br>
  7454. <em>
  7455. string
  7456. </em>
  7457. </td>
  7458. <td>
  7459. <p>Database to use as source</p>
  7460. </td>
  7461. </tr>
  7462. <tr>
  7463. <td>
  7464. <code>auth</code></br>
  7465. <em>
  7466. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  7467. PasswordDepotAuth
  7468. </a>
  7469. </em>
  7470. </td>
  7471. <td>
  7472. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  7473. </td>
  7474. </tr>
  7475. </tbody>
  7476. </table>
  7477. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  7478. </h3>
  7479. <p>
  7480. (<em>Appears on:</em>
  7481. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  7482. </p>
  7483. <p>
  7484. </p>
  7485. <table>
  7486. <thead>
  7487. <tr>
  7488. <th>Field</th>
  7489. <th>Description</th>
  7490. </tr>
  7491. </thead>
  7492. <tbody>
  7493. <tr>
  7494. <td>
  7495. <code>credentials</code></br>
  7496. <em>
  7497. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7498. External Secrets meta/v1.SecretKeySelector
  7499. </a>
  7500. </em>
  7501. </td>
  7502. <td>
  7503. <em>(Optional)</em>
  7504. <p>Username / Password is used for authentication.</p>
  7505. </td>
  7506. </tr>
  7507. </tbody>
  7508. </table>
  7509. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  7510. </h3>
  7511. <p>
  7512. (<em>Appears on:</em>
  7513. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  7514. </p>
  7515. <p>
  7516. <p>PreviderAuth contains a secretRef for credentials.</p>
  7517. </p>
  7518. <table>
  7519. <thead>
  7520. <tr>
  7521. <th>Field</th>
  7522. <th>Description</th>
  7523. </tr>
  7524. </thead>
  7525. <tbody>
  7526. <tr>
  7527. <td>
  7528. <code>secretRef</code></br>
  7529. <em>
  7530. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  7531. PreviderAuthSecretRef
  7532. </a>
  7533. </em>
  7534. </td>
  7535. <td>
  7536. <em>(Optional)</em>
  7537. </td>
  7538. </tr>
  7539. </tbody>
  7540. </table>
  7541. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  7542. </h3>
  7543. <p>
  7544. (<em>Appears on:</em>
  7545. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  7546. </p>
  7547. <p>
  7548. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  7549. </p>
  7550. <table>
  7551. <thead>
  7552. <tr>
  7553. <th>Field</th>
  7554. <th>Description</th>
  7555. </tr>
  7556. </thead>
  7557. <tbody>
  7558. <tr>
  7559. <td>
  7560. <code>accessToken</code></br>
  7561. <em>
  7562. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7563. External Secrets meta/v1.SecretKeySelector
  7564. </a>
  7565. </em>
  7566. </td>
  7567. <td>
  7568. <p>The AccessToken is used for authentication</p>
  7569. </td>
  7570. </tr>
  7571. </tbody>
  7572. </table>
  7573. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  7574. </h3>
  7575. <p>
  7576. (<em>Appears on:</em>
  7577. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7578. </p>
  7579. <p>
  7580. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  7581. </p>
  7582. <table>
  7583. <thead>
  7584. <tr>
  7585. <th>Field</th>
  7586. <th>Description</th>
  7587. </tr>
  7588. </thead>
  7589. <tbody>
  7590. <tr>
  7591. <td>
  7592. <code>auth</code></br>
  7593. <em>
  7594. <a href="#external-secrets.io/v1.PreviderAuth">
  7595. PreviderAuth
  7596. </a>
  7597. </em>
  7598. </td>
  7599. <td>
  7600. </td>
  7601. </tr>
  7602. <tr>
  7603. <td>
  7604. <code>baseUri</code></br>
  7605. <em>
  7606. string
  7607. </em>
  7608. </td>
  7609. <td>
  7610. <em>(Optional)</em>
  7611. </td>
  7612. </tr>
  7613. </tbody>
  7614. </table>
  7615. <h3 id="external-secrets.io/v1.Provider">Provider
  7616. </h3>
  7617. <p>
  7618. <p>Provider is a common interface for interacting with secret backends.</p>
  7619. </p>
  7620. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  7621. </h3>
  7622. <p>
  7623. (<em>Appears on:</em>
  7624. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7625. </p>
  7626. <p>
  7627. </p>
  7628. <table>
  7629. <thead>
  7630. <tr>
  7631. <th>Field</th>
  7632. <th>Description</th>
  7633. </tr>
  7634. </thead>
  7635. <tbody>
  7636. <tr>
  7637. <td>
  7638. <code>apiUrl</code></br>
  7639. <em>
  7640. string
  7641. </em>
  7642. </td>
  7643. <td>
  7644. <p>APIURL is the URL of the Pulumi API.</p>
  7645. </td>
  7646. </tr>
  7647. <tr>
  7648. <td>
  7649. <code>accessToken</code></br>
  7650. <em>
  7651. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  7652. PulumiProviderSecretRef
  7653. </a>
  7654. </em>
  7655. </td>
  7656. <td>
  7657. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  7658. </td>
  7659. </tr>
  7660. <tr>
  7661. <td>
  7662. <code>organization</code></br>
  7663. <em>
  7664. string
  7665. </em>
  7666. </td>
  7667. <td>
  7668. <p>Organization are a space to collaborate on shared projects and stacks.
  7669. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  7670. </td>
  7671. </tr>
  7672. <tr>
  7673. <td>
  7674. <code>project</code></br>
  7675. <em>
  7676. string
  7677. </em>
  7678. </td>
  7679. <td>
  7680. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  7681. </td>
  7682. </tr>
  7683. <tr>
  7684. <td>
  7685. <code>environment</code></br>
  7686. <em>
  7687. string
  7688. </em>
  7689. </td>
  7690. <td>
  7691. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  7692. dynamically retrieved values from supported providers including all major clouds,
  7693. and other Pulumi ESC environments.
  7694. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  7695. </td>
  7696. </tr>
  7697. </tbody>
  7698. </table>
  7699. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  7700. </h3>
  7701. <p>
  7702. (<em>Appears on:</em>
  7703. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  7704. </p>
  7705. <p>
  7706. </p>
  7707. <table>
  7708. <thead>
  7709. <tr>
  7710. <th>Field</th>
  7711. <th>Description</th>
  7712. </tr>
  7713. </thead>
  7714. <tbody>
  7715. <tr>
  7716. <td>
  7717. <code>secretRef</code></br>
  7718. <em>
  7719. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7720. External Secrets meta/v1.SecretKeySelector
  7721. </a>
  7722. </em>
  7723. </td>
  7724. <td>
  7725. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  7726. </td>
  7727. </tr>
  7728. </tbody>
  7729. </table>
  7730. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  7731. </h3>
  7732. <p>
  7733. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  7734. </p>
  7735. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  7736. </h3>
  7737. <p>
  7738. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  7739. </p>
  7740. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  7741. </h3>
  7742. <p>
  7743. (<em>Appears on:</em>
  7744. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7745. </p>
  7746. <p>
  7747. </p>
  7748. <table>
  7749. <thead>
  7750. <tr>
  7751. <th>Field</th>
  7752. <th>Description</th>
  7753. </tr>
  7754. </thead>
  7755. <tbody>
  7756. <tr>
  7757. <td>
  7758. <code>apiUrl</code></br>
  7759. <em>
  7760. string
  7761. </em>
  7762. </td>
  7763. <td>
  7764. <em>(Optional)</em>
  7765. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  7766. </td>
  7767. </tr>
  7768. <tr>
  7769. <td>
  7770. <code>region</code></br>
  7771. <em>
  7772. string
  7773. </em>
  7774. </td>
  7775. <td>
  7776. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  7777. </td>
  7778. </tr>
  7779. <tr>
  7780. <td>
  7781. <code>projectId</code></br>
  7782. <em>
  7783. string
  7784. </em>
  7785. </td>
  7786. <td>
  7787. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  7788. </td>
  7789. </tr>
  7790. <tr>
  7791. <td>
  7792. <code>accessKey</code></br>
  7793. <em>
  7794. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  7795. ScalewayProviderSecretRef
  7796. </a>
  7797. </em>
  7798. </td>
  7799. <td>
  7800. <p>AccessKey is the non-secret part of the api key.</p>
  7801. </td>
  7802. </tr>
  7803. <tr>
  7804. <td>
  7805. <code>secretKey</code></br>
  7806. <em>
  7807. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  7808. ScalewayProviderSecretRef
  7809. </a>
  7810. </em>
  7811. </td>
  7812. <td>
  7813. <p>SecretKey is the non-secret part of the api key.</p>
  7814. </td>
  7815. </tr>
  7816. </tbody>
  7817. </table>
  7818. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  7819. </h3>
  7820. <p>
  7821. (<em>Appears on:</em>
  7822. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  7823. </p>
  7824. <p>
  7825. </p>
  7826. <table>
  7827. <thead>
  7828. <tr>
  7829. <th>Field</th>
  7830. <th>Description</th>
  7831. </tr>
  7832. </thead>
  7833. <tbody>
  7834. <tr>
  7835. <td>
  7836. <code>value</code></br>
  7837. <em>
  7838. string
  7839. </em>
  7840. </td>
  7841. <td>
  7842. <em>(Optional)</em>
  7843. <p>Value can be specified directly to set a value without using a secret.</p>
  7844. </td>
  7845. </tr>
  7846. <tr>
  7847. <td>
  7848. <code>secretRef</code></br>
  7849. <em>
  7850. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7851. External Secrets meta/v1.SecretKeySelector
  7852. </a>
  7853. </em>
  7854. </td>
  7855. <td>
  7856. <em>(Optional)</em>
  7857. <p>SecretRef references a key in a secret that will be used as value.</p>
  7858. </td>
  7859. </tr>
  7860. </tbody>
  7861. </table>
  7862. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  7863. </h3>
  7864. <p>
  7865. (<em>Appears on:</em>
  7866. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7867. </p>
  7868. <p>
  7869. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  7870. </p>
  7871. <table>
  7872. <thead>
  7873. <tr>
  7874. <th>Field</th>
  7875. <th>Description</th>
  7876. </tr>
  7877. </thead>
  7878. <tbody>
  7879. <tr>
  7880. <td>
  7881. <code>username</code></br>
  7882. <em>
  7883. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  7884. SecretServerProviderRef
  7885. </a>
  7886. </em>
  7887. </td>
  7888. <td>
  7889. <p>Username is the secret server account username.</p>
  7890. </td>
  7891. </tr>
  7892. <tr>
  7893. <td>
  7894. <code>password</code></br>
  7895. <em>
  7896. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  7897. SecretServerProviderRef
  7898. </a>
  7899. </em>
  7900. </td>
  7901. <td>
  7902. <p>Password is the secret server account password.</p>
  7903. </td>
  7904. </tr>
  7905. <tr>
  7906. <td>
  7907. <code>serverURL</code></br>
  7908. <em>
  7909. string
  7910. </em>
  7911. </td>
  7912. <td>
  7913. <p>ServerURL
  7914. URL to your secret server installation</p>
  7915. </td>
  7916. </tr>
  7917. </tbody>
  7918. </table>
  7919. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  7920. </h3>
  7921. <p>
  7922. (<em>Appears on:</em>
  7923. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  7924. </p>
  7925. <p>
  7926. </p>
  7927. <table>
  7928. <thead>
  7929. <tr>
  7930. <th>Field</th>
  7931. <th>Description</th>
  7932. </tr>
  7933. </thead>
  7934. <tbody>
  7935. <tr>
  7936. <td>
  7937. <code>value</code></br>
  7938. <em>
  7939. string
  7940. </em>
  7941. </td>
  7942. <td>
  7943. <em>(Optional)</em>
  7944. <p>Value can be specified directly to set a value without using a secret.</p>
  7945. </td>
  7946. </tr>
  7947. <tr>
  7948. <td>
  7949. <code>secretRef</code></br>
  7950. <em>
  7951. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7952. External Secrets meta/v1.SecretKeySelector
  7953. </a>
  7954. </em>
  7955. </td>
  7956. <td>
  7957. <em>(Optional)</em>
  7958. <p>SecretRef references a key in a secret that will be used as value.</p>
  7959. </td>
  7960. </tr>
  7961. </tbody>
  7962. </table>
  7963. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  7964. </h3>
  7965. <p>
  7966. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  7967. </p>
  7968. <table>
  7969. <thead>
  7970. <tr>
  7971. <th>Field</th>
  7972. <th>Description</th>
  7973. </tr>
  7974. </thead>
  7975. <tbody>
  7976. <tr>
  7977. <td>
  7978. <code>metadata</code></br>
  7979. <em>
  7980. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  7981. Kubernetes meta/v1.ObjectMeta
  7982. </a>
  7983. </em>
  7984. </td>
  7985. <td>
  7986. Refer to the Kubernetes API documentation for the fields of the
  7987. <code>metadata</code> field.
  7988. </td>
  7989. </tr>
  7990. <tr>
  7991. <td>
  7992. <code>spec</code></br>
  7993. <em>
  7994. <a href="#external-secrets.io/v1.SecretStoreSpec">
  7995. SecretStoreSpec
  7996. </a>
  7997. </em>
  7998. </td>
  7999. <td>
  8000. <br/>
  8001. <br/>
  8002. <table>
  8003. <tr>
  8004. <td>
  8005. <code>controller</code></br>
  8006. <em>
  8007. string
  8008. </em>
  8009. </td>
  8010. <td>
  8011. <em>(Optional)</em>
  8012. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8013. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8014. </td>
  8015. </tr>
  8016. <tr>
  8017. <td>
  8018. <code>provider</code></br>
  8019. <em>
  8020. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8021. SecretStoreProvider
  8022. </a>
  8023. </em>
  8024. </td>
  8025. <td>
  8026. <p>Used to configure the provider. Only one provider may be set</p>
  8027. </td>
  8028. </tr>
  8029. <tr>
  8030. <td>
  8031. <code>retrySettings</code></br>
  8032. <em>
  8033. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  8034. SecretStoreRetrySettings
  8035. </a>
  8036. </em>
  8037. </td>
  8038. <td>
  8039. <em>(Optional)</em>
  8040. <p>Used to configure http retries if failed</p>
  8041. </td>
  8042. </tr>
  8043. <tr>
  8044. <td>
  8045. <code>refreshInterval</code></br>
  8046. <em>
  8047. int
  8048. </em>
  8049. </td>
  8050. <td>
  8051. <em>(Optional)</em>
  8052. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  8053. </td>
  8054. </tr>
  8055. <tr>
  8056. <td>
  8057. <code>conditions</code></br>
  8058. <em>
  8059. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  8060. []ClusterSecretStoreCondition
  8061. </a>
  8062. </em>
  8063. </td>
  8064. <td>
  8065. <em>(Optional)</em>
  8066. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  8067. </td>
  8068. </tr>
  8069. </table>
  8070. </td>
  8071. </tr>
  8072. <tr>
  8073. <td>
  8074. <code>status</code></br>
  8075. <em>
  8076. <a href="#external-secrets.io/v1.SecretStoreStatus">
  8077. SecretStoreStatus
  8078. </a>
  8079. </em>
  8080. </td>
  8081. <td>
  8082. </td>
  8083. </tr>
  8084. </tbody>
  8085. </table>
  8086. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  8087. (<code>string</code> alias)</p></h3>
  8088. <p>
  8089. (<em>Appears on:</em>
  8090. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  8091. </p>
  8092. <p>
  8093. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  8094. </p>
  8095. <table>
  8096. <thead>
  8097. <tr>
  8098. <th>Value</th>
  8099. <th>Description</th>
  8100. </tr>
  8101. </thead>
  8102. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  8103. <td></td>
  8104. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  8105. <td></td>
  8106. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  8107. <td></td>
  8108. </tr></tbody>
  8109. </table>
  8110. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  8111. (<code>string</code> alias)</p></h3>
  8112. <p>
  8113. (<em>Appears on:</em>
  8114. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  8115. </p>
  8116. <p>
  8117. </p>
  8118. <table>
  8119. <thead>
  8120. <tr>
  8121. <th>Value</th>
  8122. <th>Description</th>
  8123. </tr>
  8124. </thead>
  8125. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  8126. <td></td>
  8127. </tr></tbody>
  8128. </table>
  8129. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  8130. </h3>
  8131. <p>
  8132. (<em>Appears on:</em>
  8133. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8134. </p>
  8135. <p>
  8136. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  8137. </p>
  8138. <table>
  8139. <thead>
  8140. <tr>
  8141. <th>Field</th>
  8142. <th>Description</th>
  8143. </tr>
  8144. </thead>
  8145. <tbody>
  8146. <tr>
  8147. <td>
  8148. <code>aws</code></br>
  8149. <em>
  8150. <a href="#external-secrets.io/v1.AWSProvider">
  8151. AWSProvider
  8152. </a>
  8153. </em>
  8154. </td>
  8155. <td>
  8156. <em>(Optional)</em>
  8157. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  8158. </td>
  8159. </tr>
  8160. <tr>
  8161. <td>
  8162. <code>azurekv</code></br>
  8163. <em>
  8164. <a href="#external-secrets.io/v1.AzureKVProvider">
  8165. AzureKVProvider
  8166. </a>
  8167. </em>
  8168. </td>
  8169. <td>
  8170. <em>(Optional)</em>
  8171. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  8172. </td>
  8173. </tr>
  8174. <tr>
  8175. <td>
  8176. <code>akeyless</code></br>
  8177. <em>
  8178. <a href="#external-secrets.io/v1.AkeylessProvider">
  8179. AkeylessProvider
  8180. </a>
  8181. </em>
  8182. </td>
  8183. <td>
  8184. <em>(Optional)</em>
  8185. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  8186. </td>
  8187. </tr>
  8188. <tr>
  8189. <td>
  8190. <code>bitwardensecretsmanager</code></br>
  8191. <em>
  8192. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  8193. BitwardenSecretsManagerProvider
  8194. </a>
  8195. </em>
  8196. </td>
  8197. <td>
  8198. <em>(Optional)</em>
  8199. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  8200. </td>
  8201. </tr>
  8202. <tr>
  8203. <td>
  8204. <code>vault</code></br>
  8205. <em>
  8206. <a href="#external-secrets.io/v1.VaultProvider">
  8207. VaultProvider
  8208. </a>
  8209. </em>
  8210. </td>
  8211. <td>
  8212. <em>(Optional)</em>
  8213. <p>Vault configures this store to sync secrets using Hashi provider</p>
  8214. </td>
  8215. </tr>
  8216. <tr>
  8217. <td>
  8218. <code>gcpsm</code></br>
  8219. <em>
  8220. <a href="#external-secrets.io/v1.GCPSMProvider">
  8221. GCPSMProvider
  8222. </a>
  8223. </em>
  8224. </td>
  8225. <td>
  8226. <em>(Optional)</em>
  8227. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  8228. </td>
  8229. </tr>
  8230. <tr>
  8231. <td>
  8232. <code>oracle</code></br>
  8233. <em>
  8234. <a href="#external-secrets.io/v1.OracleProvider">
  8235. OracleProvider
  8236. </a>
  8237. </em>
  8238. </td>
  8239. <td>
  8240. <em>(Optional)</em>
  8241. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  8242. </td>
  8243. </tr>
  8244. <tr>
  8245. <td>
  8246. <code>ibm</code></br>
  8247. <em>
  8248. <a href="#external-secrets.io/v1.IBMProvider">
  8249. IBMProvider
  8250. </a>
  8251. </em>
  8252. </td>
  8253. <td>
  8254. <em>(Optional)</em>
  8255. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  8256. </td>
  8257. </tr>
  8258. <tr>
  8259. <td>
  8260. <code>yandexcertificatemanager</code></br>
  8261. <em>
  8262. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  8263. YandexCertificateManagerProvider
  8264. </a>
  8265. </em>
  8266. </td>
  8267. <td>
  8268. <em>(Optional)</em>
  8269. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  8270. </td>
  8271. </tr>
  8272. <tr>
  8273. <td>
  8274. <code>yandexlockbox</code></br>
  8275. <em>
  8276. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  8277. YandexLockboxProvider
  8278. </a>
  8279. </em>
  8280. </td>
  8281. <td>
  8282. <em>(Optional)</em>
  8283. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  8284. </td>
  8285. </tr>
  8286. <tr>
  8287. <td>
  8288. <code>github</code></br>
  8289. <em>
  8290. <a href="#external-secrets.io/v1.GithubProvider">
  8291. GithubProvider
  8292. </a>
  8293. </em>
  8294. </td>
  8295. <td>
  8296. <em>(Optional)</em>
  8297. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  8298. </td>
  8299. </tr>
  8300. <tr>
  8301. <td>
  8302. <code>gitlab</code></br>
  8303. <em>
  8304. <a href="#external-secrets.io/v1.GitlabProvider">
  8305. GitlabProvider
  8306. </a>
  8307. </em>
  8308. </td>
  8309. <td>
  8310. <em>(Optional)</em>
  8311. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  8312. </td>
  8313. </tr>
  8314. <tr>
  8315. <td>
  8316. <code>alibaba</code></br>
  8317. <em>
  8318. <a href="#external-secrets.io/v1.AlibabaProvider">
  8319. AlibabaProvider
  8320. </a>
  8321. </em>
  8322. </td>
  8323. <td>
  8324. <em>(Optional)</em>
  8325. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  8326. </td>
  8327. </tr>
  8328. <tr>
  8329. <td>
  8330. <code>onepassword</code></br>
  8331. <em>
  8332. <a href="#external-secrets.io/v1.OnePasswordProvider">
  8333. OnePasswordProvider
  8334. </a>
  8335. </em>
  8336. </td>
  8337. <td>
  8338. <em>(Optional)</em>
  8339. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  8340. </td>
  8341. </tr>
  8342. <tr>
  8343. <td>
  8344. <code>webhook</code></br>
  8345. <em>
  8346. <a href="#external-secrets.io/v1.WebhookProvider">
  8347. WebhookProvider
  8348. </a>
  8349. </em>
  8350. </td>
  8351. <td>
  8352. <em>(Optional)</em>
  8353. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  8354. </td>
  8355. </tr>
  8356. <tr>
  8357. <td>
  8358. <code>kubernetes</code></br>
  8359. <em>
  8360. <a href="#external-secrets.io/v1.KubernetesProvider">
  8361. KubernetesProvider
  8362. </a>
  8363. </em>
  8364. </td>
  8365. <td>
  8366. <em>(Optional)</em>
  8367. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  8368. </td>
  8369. </tr>
  8370. <tr>
  8371. <td>
  8372. <code>fake</code></br>
  8373. <em>
  8374. <a href="#external-secrets.io/v1.FakeProvider">
  8375. FakeProvider
  8376. </a>
  8377. </em>
  8378. </td>
  8379. <td>
  8380. <em>(Optional)</em>
  8381. <p>Fake configures a store with static key/value pairs</p>
  8382. </td>
  8383. </tr>
  8384. <tr>
  8385. <td>
  8386. <code>senhasegura</code></br>
  8387. <em>
  8388. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  8389. SenhaseguraProvider
  8390. </a>
  8391. </em>
  8392. </td>
  8393. <td>
  8394. <em>(Optional)</em>
  8395. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  8396. </td>
  8397. </tr>
  8398. <tr>
  8399. <td>
  8400. <code>scaleway</code></br>
  8401. <em>
  8402. <a href="#external-secrets.io/v1.ScalewayProvider">
  8403. ScalewayProvider
  8404. </a>
  8405. </em>
  8406. </td>
  8407. <td>
  8408. <em>(Optional)</em>
  8409. <p>Scaleway</p>
  8410. </td>
  8411. </tr>
  8412. <tr>
  8413. <td>
  8414. <code>doppler</code></br>
  8415. <em>
  8416. <a href="#external-secrets.io/v1.DopplerProvider">
  8417. DopplerProvider
  8418. </a>
  8419. </em>
  8420. </td>
  8421. <td>
  8422. <em>(Optional)</em>
  8423. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  8424. </td>
  8425. </tr>
  8426. <tr>
  8427. <td>
  8428. <code>previder</code></br>
  8429. <em>
  8430. <a href="#external-secrets.io/v1.PreviderProvider">
  8431. PreviderProvider
  8432. </a>
  8433. </em>
  8434. </td>
  8435. <td>
  8436. <em>(Optional)</em>
  8437. <p>Previder configures this store to sync secrets using the Previder provider</p>
  8438. </td>
  8439. </tr>
  8440. <tr>
  8441. <td>
  8442. <code>onboardbase</code></br>
  8443. <em>
  8444. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  8445. OnboardbaseProvider
  8446. </a>
  8447. </em>
  8448. </td>
  8449. <td>
  8450. <em>(Optional)</em>
  8451. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  8452. </td>
  8453. </tr>
  8454. <tr>
  8455. <td>
  8456. <code>keepersecurity</code></br>
  8457. <em>
  8458. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  8459. KeeperSecurityProvider
  8460. </a>
  8461. </em>
  8462. </td>
  8463. <td>
  8464. <em>(Optional)</em>
  8465. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  8466. </td>
  8467. </tr>
  8468. <tr>
  8469. <td>
  8470. <code>conjur</code></br>
  8471. <em>
  8472. <a href="#external-secrets.io/v1.ConjurProvider">
  8473. ConjurProvider
  8474. </a>
  8475. </em>
  8476. </td>
  8477. <td>
  8478. <em>(Optional)</em>
  8479. <p>Conjur configures this store to sync secrets using conjur provider</p>
  8480. </td>
  8481. </tr>
  8482. <tr>
  8483. <td>
  8484. <code>delinea</code></br>
  8485. <em>
  8486. <a href="#external-secrets.io/v1.DelineaProvider">
  8487. DelineaProvider
  8488. </a>
  8489. </em>
  8490. </td>
  8491. <td>
  8492. <em>(Optional)</em>
  8493. <p>Delinea DevOps Secrets Vault
  8494. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  8495. </td>
  8496. </tr>
  8497. <tr>
  8498. <td>
  8499. <code>secretserver</code></br>
  8500. <em>
  8501. <a href="#external-secrets.io/v1.SecretServerProvider">
  8502. SecretServerProvider
  8503. </a>
  8504. </em>
  8505. </td>
  8506. <td>
  8507. <em>(Optional)</em>
  8508. <p>SecretServer configures this store to sync secrets using SecretServer provider
  8509. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  8510. </td>
  8511. </tr>
  8512. <tr>
  8513. <td>
  8514. <code>chef</code></br>
  8515. <em>
  8516. <a href="#external-secrets.io/v1.ChefProvider">
  8517. ChefProvider
  8518. </a>
  8519. </em>
  8520. </td>
  8521. <td>
  8522. <em>(Optional)</em>
  8523. <p>Chef configures this store to sync secrets with chef server</p>
  8524. </td>
  8525. </tr>
  8526. <tr>
  8527. <td>
  8528. <code>pulumi</code></br>
  8529. <em>
  8530. <a href="#external-secrets.io/v1.PulumiProvider">
  8531. PulumiProvider
  8532. </a>
  8533. </em>
  8534. </td>
  8535. <td>
  8536. <em>(Optional)</em>
  8537. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  8538. </td>
  8539. </tr>
  8540. <tr>
  8541. <td>
  8542. <code>fortanix</code></br>
  8543. <em>
  8544. <a href="#external-secrets.io/v1.FortanixProvider">
  8545. FortanixProvider
  8546. </a>
  8547. </em>
  8548. </td>
  8549. <td>
  8550. <em>(Optional)</em>
  8551. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  8552. </td>
  8553. </tr>
  8554. <tr>
  8555. <td>
  8556. <code>passworddepot</code></br>
  8557. <em>
  8558. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  8559. PasswordDepotProvider
  8560. </a>
  8561. </em>
  8562. </td>
  8563. <td>
  8564. <em>(Optional)</em>
  8565. </td>
  8566. </tr>
  8567. <tr>
  8568. <td>
  8569. <code>passbolt</code></br>
  8570. <em>
  8571. <a href="#external-secrets.io/v1.PassboltProvider">
  8572. PassboltProvider
  8573. </a>
  8574. </em>
  8575. </td>
  8576. <td>
  8577. <em>(Optional)</em>
  8578. </td>
  8579. </tr>
  8580. <tr>
  8581. <td>
  8582. <code>device42</code></br>
  8583. <em>
  8584. <a href="#external-secrets.io/v1.Device42Provider">
  8585. Device42Provider
  8586. </a>
  8587. </em>
  8588. </td>
  8589. <td>
  8590. <em>(Optional)</em>
  8591. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  8592. </td>
  8593. </tr>
  8594. <tr>
  8595. <td>
  8596. <code>infisical</code></br>
  8597. <em>
  8598. <a href="#external-secrets.io/v1.InfisicalProvider">
  8599. InfisicalProvider
  8600. </a>
  8601. </em>
  8602. </td>
  8603. <td>
  8604. <em>(Optional)</em>
  8605. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  8606. </td>
  8607. </tr>
  8608. <tr>
  8609. <td>
  8610. <code>beyondtrust</code></br>
  8611. <em>
  8612. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  8613. BeyondtrustProvider
  8614. </a>
  8615. </em>
  8616. </td>
  8617. <td>
  8618. <em>(Optional)</em>
  8619. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  8620. </td>
  8621. </tr>
  8622. <tr>
  8623. <td>
  8624. <code>cloudrusm</code></br>
  8625. <em>
  8626. <a href="#external-secrets.io/v1.CloudruSMProvider">
  8627. CloudruSMProvider
  8628. </a>
  8629. </em>
  8630. </td>
  8631. <td>
  8632. <em>(Optional)</em>
  8633. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  8634. </td>
  8635. </tr>
  8636. </tbody>
  8637. </table>
  8638. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  8639. </h3>
  8640. <p>
  8641. (<em>Appears on:</em>
  8642. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  8643. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  8644. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  8645. </p>
  8646. <p>
  8647. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  8648. </p>
  8649. <table>
  8650. <thead>
  8651. <tr>
  8652. <th>Field</th>
  8653. <th>Description</th>
  8654. </tr>
  8655. </thead>
  8656. <tbody>
  8657. <tr>
  8658. <td>
  8659. <code>name</code></br>
  8660. <em>
  8661. string
  8662. </em>
  8663. </td>
  8664. <td>
  8665. <p>Name of the SecretStore resource</p>
  8666. </td>
  8667. </tr>
  8668. <tr>
  8669. <td>
  8670. <code>kind</code></br>
  8671. <em>
  8672. string
  8673. </em>
  8674. </td>
  8675. <td>
  8676. <em>(Optional)</em>
  8677. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  8678. Defaults to <code>SecretStore</code></p>
  8679. </td>
  8680. </tr>
  8681. </tbody>
  8682. </table>
  8683. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  8684. </h3>
  8685. <p>
  8686. (<em>Appears on:</em>
  8687. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8688. </p>
  8689. <p>
  8690. </p>
  8691. <table>
  8692. <thead>
  8693. <tr>
  8694. <th>Field</th>
  8695. <th>Description</th>
  8696. </tr>
  8697. </thead>
  8698. <tbody>
  8699. <tr>
  8700. <td>
  8701. <code>maxRetries</code></br>
  8702. <em>
  8703. int32
  8704. </em>
  8705. </td>
  8706. <td>
  8707. </td>
  8708. </tr>
  8709. <tr>
  8710. <td>
  8711. <code>retryInterval</code></br>
  8712. <em>
  8713. string
  8714. </em>
  8715. </td>
  8716. <td>
  8717. </td>
  8718. </tr>
  8719. </tbody>
  8720. </table>
  8721. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  8722. </h3>
  8723. <p>
  8724. (<em>Appears on:</em>
  8725. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  8726. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  8727. </p>
  8728. <p>
  8729. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  8730. </p>
  8731. <table>
  8732. <thead>
  8733. <tr>
  8734. <th>Field</th>
  8735. <th>Description</th>
  8736. </tr>
  8737. </thead>
  8738. <tbody>
  8739. <tr>
  8740. <td>
  8741. <code>controller</code></br>
  8742. <em>
  8743. string
  8744. </em>
  8745. </td>
  8746. <td>
  8747. <em>(Optional)</em>
  8748. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8749. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8750. </td>
  8751. </tr>
  8752. <tr>
  8753. <td>
  8754. <code>provider</code></br>
  8755. <em>
  8756. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8757. SecretStoreProvider
  8758. </a>
  8759. </em>
  8760. </td>
  8761. <td>
  8762. <p>Used to configure the provider. Only one provider may be set</p>
  8763. </td>
  8764. </tr>
  8765. <tr>
  8766. <td>
  8767. <code>retrySettings</code></br>
  8768. <em>
  8769. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  8770. SecretStoreRetrySettings
  8771. </a>
  8772. </em>
  8773. </td>
  8774. <td>
  8775. <em>(Optional)</em>
  8776. <p>Used to configure http retries if failed</p>
  8777. </td>
  8778. </tr>
  8779. <tr>
  8780. <td>
  8781. <code>refreshInterval</code></br>
  8782. <em>
  8783. int
  8784. </em>
  8785. </td>
  8786. <td>
  8787. <em>(Optional)</em>
  8788. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  8789. </td>
  8790. </tr>
  8791. <tr>
  8792. <td>
  8793. <code>conditions</code></br>
  8794. <em>
  8795. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  8796. []ClusterSecretStoreCondition
  8797. </a>
  8798. </em>
  8799. </td>
  8800. <td>
  8801. <em>(Optional)</em>
  8802. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  8803. </td>
  8804. </tr>
  8805. </tbody>
  8806. </table>
  8807. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  8808. </h3>
  8809. <p>
  8810. (<em>Appears on:</em>
  8811. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  8812. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  8813. </p>
  8814. <p>
  8815. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  8816. </p>
  8817. <table>
  8818. <thead>
  8819. <tr>
  8820. <th>Field</th>
  8821. <th>Description</th>
  8822. </tr>
  8823. </thead>
  8824. <tbody>
  8825. <tr>
  8826. <td>
  8827. <code>conditions</code></br>
  8828. <em>
  8829. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  8830. []SecretStoreStatusCondition
  8831. </a>
  8832. </em>
  8833. </td>
  8834. <td>
  8835. <em>(Optional)</em>
  8836. </td>
  8837. </tr>
  8838. <tr>
  8839. <td>
  8840. <code>capabilities</code></br>
  8841. <em>
  8842. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  8843. SecretStoreCapabilities
  8844. </a>
  8845. </em>
  8846. </td>
  8847. <td>
  8848. <em>(Optional)</em>
  8849. </td>
  8850. </tr>
  8851. </tbody>
  8852. </table>
  8853. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  8854. </h3>
  8855. <p>
  8856. (<em>Appears on:</em>
  8857. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  8858. </p>
  8859. <p>
  8860. </p>
  8861. <table>
  8862. <thead>
  8863. <tr>
  8864. <th>Field</th>
  8865. <th>Description</th>
  8866. </tr>
  8867. </thead>
  8868. <tbody>
  8869. <tr>
  8870. <td>
  8871. <code>type</code></br>
  8872. <em>
  8873. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  8874. SecretStoreConditionType
  8875. </a>
  8876. </em>
  8877. </td>
  8878. <td>
  8879. </td>
  8880. </tr>
  8881. <tr>
  8882. <td>
  8883. <code>status</code></br>
  8884. <em>
  8885. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  8886. Kubernetes core/v1.ConditionStatus
  8887. </a>
  8888. </em>
  8889. </td>
  8890. <td>
  8891. </td>
  8892. </tr>
  8893. <tr>
  8894. <td>
  8895. <code>reason</code></br>
  8896. <em>
  8897. string
  8898. </em>
  8899. </td>
  8900. <td>
  8901. <em>(Optional)</em>
  8902. </td>
  8903. </tr>
  8904. <tr>
  8905. <td>
  8906. <code>message</code></br>
  8907. <em>
  8908. string
  8909. </em>
  8910. </td>
  8911. <td>
  8912. <em>(Optional)</em>
  8913. </td>
  8914. </tr>
  8915. <tr>
  8916. <td>
  8917. <code>lastTransitionTime</code></br>
  8918. <em>
  8919. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  8920. Kubernetes meta/v1.Time
  8921. </a>
  8922. </em>
  8923. </td>
  8924. <td>
  8925. <em>(Optional)</em>
  8926. </td>
  8927. </tr>
  8928. </tbody>
  8929. </table>
  8930. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  8931. </h3>
  8932. <p>
  8933. <p>SecretsClient provides access to secrets.</p>
  8934. </p>
  8935. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  8936. </h3>
  8937. <p>
  8938. (<em>Appears on:</em>
  8939. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  8940. </p>
  8941. <p>
  8942. <p>SecretsManager defines how the provider behaves when interacting with AWS
  8943. SecretsManager. Some of these settings are only applicable to controlling how
  8944. secrets are deleted, and hence only apply to PushSecret (and only when
  8945. deletionPolicy is set to Delete).</p>
  8946. </p>
  8947. <table>
  8948. <thead>
  8949. <tr>
  8950. <th>Field</th>
  8951. <th>Description</th>
  8952. </tr>
  8953. </thead>
  8954. <tbody>
  8955. <tr>
  8956. <td>
  8957. <code>forceDeleteWithoutRecovery</code></br>
  8958. <em>
  8959. bool
  8960. </em>
  8961. </td>
  8962. <td>
  8963. <em>(Optional)</em>
  8964. <p>Specifies whether to delete the secret without any recovery window. You
  8965. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  8966. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  8967. recovery window.
  8968. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  8969. </td>
  8970. </tr>
  8971. <tr>
  8972. <td>
  8973. <code>recoveryWindowInDays</code></br>
  8974. <em>
  8975. int64
  8976. </em>
  8977. </td>
  8978. <td>
  8979. <em>(Optional)</em>
  8980. <p>The number of days from 7 to 30 that Secrets Manager waits before
  8981. permanently deleting the secret. You can&rsquo;t use both this parameter and
  8982. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  8983. then by default Secrets Manager uses a 30 day recovery window.
  8984. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  8985. </td>
  8986. </tr>
  8987. </tbody>
  8988. </table>
  8989. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  8990. </h3>
  8991. <p>
  8992. (<em>Appears on:</em>
  8993. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  8994. </p>
  8995. <p>
  8996. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  8997. </p>
  8998. <table>
  8999. <thead>
  9000. <tr>
  9001. <th>Field</th>
  9002. <th>Description</th>
  9003. </tr>
  9004. </thead>
  9005. <tbody>
  9006. <tr>
  9007. <td>
  9008. <code>clientId</code></br>
  9009. <em>
  9010. string
  9011. </em>
  9012. </td>
  9013. <td>
  9014. </td>
  9015. </tr>
  9016. <tr>
  9017. <td>
  9018. <code>clientSecretSecretRef</code></br>
  9019. <em>
  9020. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9021. External Secrets meta/v1.SecretKeySelector
  9022. </a>
  9023. </em>
  9024. </td>
  9025. <td>
  9026. </td>
  9027. </tr>
  9028. </tbody>
  9029. </table>
  9030. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  9031. (<code>string</code> alias)</p></h3>
  9032. <p>
  9033. (<em>Appears on:</em>
  9034. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9035. </p>
  9036. <p>
  9037. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  9038. </p>
  9039. <table>
  9040. <thead>
  9041. <tr>
  9042. <th>Value</th>
  9043. <th>Description</th>
  9044. </tr>
  9045. </thead>
  9046. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  9047. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  9048. see: https://senhasegura.com/devops
  9049. </code></pre>
  9050. </td>
  9051. </tr></tbody>
  9052. </table>
  9053. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  9054. </h3>
  9055. <p>
  9056. (<em>Appears on:</em>
  9057. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9058. </p>
  9059. <p>
  9060. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  9061. </p>
  9062. <table>
  9063. <thead>
  9064. <tr>
  9065. <th>Field</th>
  9066. <th>Description</th>
  9067. </tr>
  9068. </thead>
  9069. <tbody>
  9070. <tr>
  9071. <td>
  9072. <code>url</code></br>
  9073. <em>
  9074. string
  9075. </em>
  9076. </td>
  9077. <td>
  9078. <p>URL of senhasegura</p>
  9079. </td>
  9080. </tr>
  9081. <tr>
  9082. <td>
  9083. <code>module</code></br>
  9084. <em>
  9085. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  9086. SenhaseguraModuleType
  9087. </a>
  9088. </em>
  9089. </td>
  9090. <td>
  9091. <p>Module defines which senhasegura module should be used to get secrets</p>
  9092. </td>
  9093. </tr>
  9094. <tr>
  9095. <td>
  9096. <code>auth</code></br>
  9097. <em>
  9098. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  9099. SenhaseguraAuth
  9100. </a>
  9101. </em>
  9102. </td>
  9103. <td>
  9104. <p>Auth defines parameters to authenticate in senhasegura</p>
  9105. </td>
  9106. </tr>
  9107. <tr>
  9108. <td>
  9109. <code>ignoreSslCertificate</code></br>
  9110. <em>
  9111. bool
  9112. </em>
  9113. </td>
  9114. <td>
  9115. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  9116. </td>
  9117. </tr>
  9118. </tbody>
  9119. </table>
  9120. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  9121. </h3>
  9122. <p>
  9123. (<em>Appears on:</em>
  9124. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  9125. </p>
  9126. <p>
  9127. <p>StoreGeneratorSourceRef allows you to override the source
  9128. from which the secret will be pulled from.
  9129. You can define at maximum one property.</p>
  9130. </p>
  9131. <table>
  9132. <thead>
  9133. <tr>
  9134. <th>Field</th>
  9135. <th>Description</th>
  9136. </tr>
  9137. </thead>
  9138. <tbody>
  9139. <tr>
  9140. <td>
  9141. <code>storeRef</code></br>
  9142. <em>
  9143. <a href="#external-secrets.io/v1.SecretStoreRef">
  9144. SecretStoreRef
  9145. </a>
  9146. </em>
  9147. </td>
  9148. <td>
  9149. <em>(Optional)</em>
  9150. </td>
  9151. </tr>
  9152. <tr>
  9153. <td>
  9154. <code>generatorRef</code></br>
  9155. <em>
  9156. <a href="#external-secrets.io/v1.GeneratorRef">
  9157. GeneratorRef
  9158. </a>
  9159. </em>
  9160. </td>
  9161. <td>
  9162. <em>(Optional)</em>
  9163. <p>GeneratorRef points to a generator custom resource.</p>
  9164. </td>
  9165. </tr>
  9166. </tbody>
  9167. </table>
  9168. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  9169. </h3>
  9170. <p>
  9171. (<em>Appears on:</em>
  9172. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  9173. </p>
  9174. <p>
  9175. <p>StoreSourceRef allows you to override the SecretStore source
  9176. from which the secret will be pulled from.
  9177. You can define at maximum one property.</p>
  9178. </p>
  9179. <table>
  9180. <thead>
  9181. <tr>
  9182. <th>Field</th>
  9183. <th>Description</th>
  9184. </tr>
  9185. </thead>
  9186. <tbody>
  9187. <tr>
  9188. <td>
  9189. <code>storeRef</code></br>
  9190. <em>
  9191. <a href="#external-secrets.io/v1.SecretStoreRef">
  9192. SecretStoreRef
  9193. </a>
  9194. </em>
  9195. </td>
  9196. <td>
  9197. <em>(Optional)</em>
  9198. </td>
  9199. </tr>
  9200. <tr>
  9201. <td>
  9202. <code>generatorRef</code></br>
  9203. <em>
  9204. <a href="#external-secrets.io/v1.GeneratorRef">
  9205. GeneratorRef
  9206. </a>
  9207. </em>
  9208. </td>
  9209. <td>
  9210. <p>GeneratorRef points to a generator custom resource.</p>
  9211. <p>Deprecated: The generatorRef is not implemented in .data[].
  9212. this will be removed with v1.</p>
  9213. </td>
  9214. </tr>
  9215. </tbody>
  9216. </table>
  9217. <h3 id="external-secrets.io/v1.Tag">Tag
  9218. </h3>
  9219. <p>
  9220. </p>
  9221. <table>
  9222. <thead>
  9223. <tr>
  9224. <th>Field</th>
  9225. <th>Description</th>
  9226. </tr>
  9227. </thead>
  9228. <tbody>
  9229. <tr>
  9230. <td>
  9231. <code>key</code></br>
  9232. <em>
  9233. string
  9234. </em>
  9235. </td>
  9236. <td>
  9237. </td>
  9238. </tr>
  9239. <tr>
  9240. <td>
  9241. <code>value</code></br>
  9242. <em>
  9243. string
  9244. </em>
  9245. </td>
  9246. <td>
  9247. </td>
  9248. </tr>
  9249. </tbody>
  9250. </table>
  9251. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  9252. (<code>string</code> alias)</p></h3>
  9253. <p>
  9254. (<em>Appears on:</em>
  9255. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9256. </p>
  9257. <p>
  9258. </p>
  9259. <table>
  9260. <thead>
  9261. <tr>
  9262. <th>Value</th>
  9263. <th>Description</th>
  9264. </tr>
  9265. </thead>
  9266. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  9267. <td></td>
  9268. </tr></tbody>
  9269. </table>
  9270. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  9271. </h3>
  9272. <p>
  9273. (<em>Appears on:</em>
  9274. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9275. </p>
  9276. <p>
  9277. </p>
  9278. <table>
  9279. <thead>
  9280. <tr>
  9281. <th>Field</th>
  9282. <th>Description</th>
  9283. </tr>
  9284. </thead>
  9285. <tbody>
  9286. <tr>
  9287. <td>
  9288. <code>configMap</code></br>
  9289. <em>
  9290. <a href="#external-secrets.io/v1.TemplateRef">
  9291. TemplateRef
  9292. </a>
  9293. </em>
  9294. </td>
  9295. <td>
  9296. </td>
  9297. </tr>
  9298. <tr>
  9299. <td>
  9300. <code>secret</code></br>
  9301. <em>
  9302. <a href="#external-secrets.io/v1.TemplateRef">
  9303. TemplateRef
  9304. </a>
  9305. </em>
  9306. </td>
  9307. <td>
  9308. </td>
  9309. </tr>
  9310. <tr>
  9311. <td>
  9312. <code>target</code></br>
  9313. <em>
  9314. <a href="#external-secrets.io/v1.TemplateTarget">
  9315. TemplateTarget
  9316. </a>
  9317. </em>
  9318. </td>
  9319. <td>
  9320. <em>(Optional)</em>
  9321. </td>
  9322. </tr>
  9323. <tr>
  9324. <td>
  9325. <code>literal</code></br>
  9326. <em>
  9327. string
  9328. </em>
  9329. </td>
  9330. <td>
  9331. <em>(Optional)</em>
  9332. </td>
  9333. </tr>
  9334. </tbody>
  9335. </table>
  9336. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  9337. (<code>string</code> alias)</p></h3>
  9338. <p>
  9339. (<em>Appears on:</em>
  9340. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9341. </p>
  9342. <p>
  9343. </p>
  9344. <table>
  9345. <thead>
  9346. <tr>
  9347. <th>Value</th>
  9348. <th>Description</th>
  9349. </tr>
  9350. </thead>
  9351. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  9352. <td></td>
  9353. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  9354. <td></td>
  9355. </tr></tbody>
  9356. </table>
  9357. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  9358. </h3>
  9359. <p>
  9360. (<em>Appears on:</em>
  9361. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9362. </p>
  9363. <p>
  9364. </p>
  9365. <table>
  9366. <thead>
  9367. <tr>
  9368. <th>Field</th>
  9369. <th>Description</th>
  9370. </tr>
  9371. </thead>
  9372. <tbody>
  9373. <tr>
  9374. <td>
  9375. <code>name</code></br>
  9376. <em>
  9377. string
  9378. </em>
  9379. </td>
  9380. <td>
  9381. <p>The name of the ConfigMap/Secret resource</p>
  9382. </td>
  9383. </tr>
  9384. <tr>
  9385. <td>
  9386. <code>items</code></br>
  9387. <em>
  9388. <a href="#external-secrets.io/v1.TemplateRefItem">
  9389. []TemplateRefItem
  9390. </a>
  9391. </em>
  9392. </td>
  9393. <td>
  9394. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  9395. </td>
  9396. </tr>
  9397. </tbody>
  9398. </table>
  9399. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  9400. </h3>
  9401. <p>
  9402. (<em>Appears on:</em>
  9403. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  9404. </p>
  9405. <p>
  9406. </p>
  9407. <table>
  9408. <thead>
  9409. <tr>
  9410. <th>Field</th>
  9411. <th>Description</th>
  9412. </tr>
  9413. </thead>
  9414. <tbody>
  9415. <tr>
  9416. <td>
  9417. <code>key</code></br>
  9418. <em>
  9419. string
  9420. </em>
  9421. </td>
  9422. <td>
  9423. <p>A key in the ConfigMap/Secret</p>
  9424. </td>
  9425. </tr>
  9426. <tr>
  9427. <td>
  9428. <code>templateAs</code></br>
  9429. <em>
  9430. <a href="#external-secrets.io/v1.TemplateScope">
  9431. TemplateScope
  9432. </a>
  9433. </em>
  9434. </td>
  9435. <td>
  9436. </td>
  9437. </tr>
  9438. </tbody>
  9439. </table>
  9440. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  9441. (<code>string</code> alias)</p></h3>
  9442. <p>
  9443. (<em>Appears on:</em>
  9444. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  9445. </p>
  9446. <p>
  9447. </p>
  9448. <table>
  9449. <thead>
  9450. <tr>
  9451. <th>Value</th>
  9452. <th>Description</th>
  9453. </tr>
  9454. </thead>
  9455. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  9456. <td></td>
  9457. </tr><tr><td><p>&#34;Values&#34;</p></td>
  9458. <td></td>
  9459. </tr></tbody>
  9460. </table>
  9461. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  9462. (<code>string</code> alias)</p></h3>
  9463. <p>
  9464. (<em>Appears on:</em>
  9465. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9466. </p>
  9467. <p>
  9468. </p>
  9469. <table>
  9470. <thead>
  9471. <tr>
  9472. <th>Value</th>
  9473. <th>Description</th>
  9474. </tr>
  9475. </thead>
  9476. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  9477. <td></td>
  9478. </tr><tr><td><p>&#34;Data&#34;</p></td>
  9479. <td></td>
  9480. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  9481. <td></td>
  9482. </tr></tbody>
  9483. </table>
  9484. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  9485. </h3>
  9486. <p>
  9487. (<em>Appears on:</em>
  9488. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  9489. </p>
  9490. <p>
  9491. </p>
  9492. <table>
  9493. <thead>
  9494. <tr>
  9495. <th>Field</th>
  9496. <th>Description</th>
  9497. </tr>
  9498. </thead>
  9499. <tbody>
  9500. <tr>
  9501. <td>
  9502. <code>bearerToken</code></br>
  9503. <em>
  9504. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9505. External Secrets meta/v1.SecretKeySelector
  9506. </a>
  9507. </em>
  9508. </td>
  9509. <td>
  9510. </td>
  9511. </tr>
  9512. </tbody>
  9513. </table>
  9514. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  9515. </h3>
  9516. <p>
  9517. (<em>Appears on:</em>
  9518. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  9519. </p>
  9520. <p>
  9521. </p>
  9522. <table>
  9523. <thead>
  9524. <tr>
  9525. <th>Field</th>
  9526. <th>Description</th>
  9527. </tr>
  9528. </thead>
  9529. <tbody>
  9530. <tr>
  9531. <td>
  9532. <code>clientId</code></br>
  9533. <em>
  9534. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9535. External Secrets meta/v1.SecretKeySelector
  9536. </a>
  9537. </em>
  9538. </td>
  9539. <td>
  9540. </td>
  9541. </tr>
  9542. <tr>
  9543. <td>
  9544. <code>clientSecret</code></br>
  9545. <em>
  9546. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9547. External Secrets meta/v1.SecretKeySelector
  9548. </a>
  9549. </em>
  9550. </td>
  9551. <td>
  9552. </td>
  9553. </tr>
  9554. </tbody>
  9555. </table>
  9556. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  9557. (<code>byte</code> alias)</p></h3>
  9558. <p>
  9559. </p>
  9560. <table>
  9561. <thead>
  9562. <tr>
  9563. <th>Value</th>
  9564. <th>Description</th>
  9565. </tr>
  9566. </thead>
  9567. <tbody><tr><td><p>2</p></td>
  9568. <td><p>Error indicates that there is a misconfiguration.</p>
  9569. </td>
  9570. </tr><tr><td><p>0</p></td>
  9571. <td><p>Ready indicates that the client is configured correctly
  9572. and can be used.</p>
  9573. </td>
  9574. </tr><tr><td><p>1</p></td>
  9575. <td><p>Unknown indicates that the client can be used
  9576. but information is missing and it can not be validated.</p>
  9577. </td>
  9578. </tr></tbody>
  9579. </table>
  9580. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  9581. </h3>
  9582. <p>
  9583. (<em>Appears on:</em>
  9584. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  9585. </p>
  9586. <p>
  9587. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  9588. with the role and secret stored in a Kubernetes Secret resource.</p>
  9589. </p>
  9590. <table>
  9591. <thead>
  9592. <tr>
  9593. <th>Field</th>
  9594. <th>Description</th>
  9595. </tr>
  9596. </thead>
  9597. <tbody>
  9598. <tr>
  9599. <td>
  9600. <code>path</code></br>
  9601. <em>
  9602. string
  9603. </em>
  9604. </td>
  9605. <td>
  9606. <p>Path where the App Role authentication backend is mounted
  9607. in Vault, e.g: &ldquo;approle&rdquo;</p>
  9608. </td>
  9609. </tr>
  9610. <tr>
  9611. <td>
  9612. <code>roleId</code></br>
  9613. <em>
  9614. string
  9615. </em>
  9616. </td>
  9617. <td>
  9618. <em>(Optional)</em>
  9619. <p>RoleID configured in the App Role authentication backend when setting
  9620. up the authentication backend in Vault.</p>
  9621. </td>
  9622. </tr>
  9623. <tr>
  9624. <td>
  9625. <code>roleRef</code></br>
  9626. <em>
  9627. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9628. External Secrets meta/v1.SecretKeySelector
  9629. </a>
  9630. </em>
  9631. </td>
  9632. <td>
  9633. <em>(Optional)</em>
  9634. <p>Reference to a key in a Secret that contains the App Role ID used
  9635. to authenticate with Vault.
  9636. The <code>key</code> field must be specified and denotes which entry within the Secret
  9637. resource is used as the app role id.</p>
  9638. </td>
  9639. </tr>
  9640. <tr>
  9641. <td>
  9642. <code>secretRef</code></br>
  9643. <em>
  9644. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9645. External Secrets meta/v1.SecretKeySelector
  9646. </a>
  9647. </em>
  9648. </td>
  9649. <td>
  9650. <p>Reference to a key in a Secret that contains the App Role secret used
  9651. to authenticate with Vault.
  9652. The <code>key</code> field must be specified and denotes which entry within the Secret
  9653. resource is used as the app role secret.</p>
  9654. </td>
  9655. </tr>
  9656. </tbody>
  9657. </table>
  9658. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  9659. </h3>
  9660. <p>
  9661. (<em>Appears on:</em>
  9662. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  9663. </p>
  9664. <p>
  9665. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  9666. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  9667. can be specified. A namespace to authenticate against can optionally be specified.</p>
  9668. </p>
  9669. <table>
  9670. <thead>
  9671. <tr>
  9672. <th>Field</th>
  9673. <th>Description</th>
  9674. </tr>
  9675. </thead>
  9676. <tbody>
  9677. <tr>
  9678. <td>
  9679. <code>namespace</code></br>
  9680. <em>
  9681. string
  9682. </em>
  9683. </td>
  9684. <td>
  9685. <em>(Optional)</em>
  9686. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  9687. Namespaces is a set of features within Vault Enterprise that allows
  9688. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  9689. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  9690. This will default to Vault.Namespace field if set, or empty otherwise</p>
  9691. </td>
  9692. </tr>
  9693. <tr>
  9694. <td>
  9695. <code>tokenSecretRef</code></br>
  9696. <em>
  9697. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9698. External Secrets meta/v1.SecretKeySelector
  9699. </a>
  9700. </em>
  9701. </td>
  9702. <td>
  9703. <em>(Optional)</em>
  9704. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  9705. </td>
  9706. </tr>
  9707. <tr>
  9708. <td>
  9709. <code>appRole</code></br>
  9710. <em>
  9711. <a href="#external-secrets.io/v1.VaultAppRole">
  9712. VaultAppRole
  9713. </a>
  9714. </em>
  9715. </td>
  9716. <td>
  9717. <em>(Optional)</em>
  9718. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  9719. with the role and secret stored in a Kubernetes Secret resource.</p>
  9720. </td>
  9721. </tr>
  9722. <tr>
  9723. <td>
  9724. <code>kubernetes</code></br>
  9725. <em>
  9726. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  9727. VaultKubernetesAuth
  9728. </a>
  9729. </em>
  9730. </td>
  9731. <td>
  9732. <em>(Optional)</em>
  9733. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  9734. token stored in the named Secret resource to the Vault server.</p>
  9735. </td>
  9736. </tr>
  9737. <tr>
  9738. <td>
  9739. <code>ldap</code></br>
  9740. <em>
  9741. <a href="#external-secrets.io/v1.VaultLdapAuth">
  9742. VaultLdapAuth
  9743. </a>
  9744. </em>
  9745. </td>
  9746. <td>
  9747. <em>(Optional)</em>
  9748. <p>Ldap authenticates with Vault by passing username/password pair using
  9749. the LDAP authentication method</p>
  9750. </td>
  9751. </tr>
  9752. <tr>
  9753. <td>
  9754. <code>jwt</code></br>
  9755. <em>
  9756. <a href="#external-secrets.io/v1.VaultJwtAuth">
  9757. VaultJwtAuth
  9758. </a>
  9759. </em>
  9760. </td>
  9761. <td>
  9762. <em>(Optional)</em>
  9763. <p>Jwt authenticates with Vault by passing role and JWT token using the
  9764. JWT/OIDC authentication method</p>
  9765. </td>
  9766. </tr>
  9767. <tr>
  9768. <td>
  9769. <code>cert</code></br>
  9770. <em>
  9771. <a href="#external-secrets.io/v1.VaultCertAuth">
  9772. VaultCertAuth
  9773. </a>
  9774. </em>
  9775. </td>
  9776. <td>
  9777. <em>(Optional)</em>
  9778. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  9779. Cert authentication method</p>
  9780. </td>
  9781. </tr>
  9782. <tr>
  9783. <td>
  9784. <code>iam</code></br>
  9785. <em>
  9786. <a href="#external-secrets.io/v1.VaultIamAuth">
  9787. VaultIamAuth
  9788. </a>
  9789. </em>
  9790. </td>
  9791. <td>
  9792. <em>(Optional)</em>
  9793. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  9794. AWS IAM authentication method</p>
  9795. </td>
  9796. </tr>
  9797. <tr>
  9798. <td>
  9799. <code>userPass</code></br>
  9800. <em>
  9801. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  9802. VaultUserPassAuth
  9803. </a>
  9804. </em>
  9805. </td>
  9806. <td>
  9807. <em>(Optional)</em>
  9808. <p>UserPass authenticates with Vault by passing username/password pair</p>
  9809. </td>
  9810. </tr>
  9811. </tbody>
  9812. </table>
  9813. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  9814. </h3>
  9815. <p>
  9816. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  9817. Only one of secretRef or jwt can be specified.
  9818. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  9819. </p>
  9820. <table>
  9821. <thead>
  9822. <tr>
  9823. <th>Field</th>
  9824. <th>Description</th>
  9825. </tr>
  9826. </thead>
  9827. <tbody>
  9828. <tr>
  9829. <td>
  9830. <code>secretRef</code></br>
  9831. <em>
  9832. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  9833. VaultAwsAuthSecretRef
  9834. </a>
  9835. </em>
  9836. </td>
  9837. <td>
  9838. <em>(Optional)</em>
  9839. </td>
  9840. </tr>
  9841. <tr>
  9842. <td>
  9843. <code>jwt</code></br>
  9844. <em>
  9845. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  9846. VaultAwsJWTAuth
  9847. </a>
  9848. </em>
  9849. </td>
  9850. <td>
  9851. <em>(Optional)</em>
  9852. </td>
  9853. </tr>
  9854. </tbody>
  9855. </table>
  9856. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  9857. </h3>
  9858. <p>
  9859. (<em>Appears on:</em>
  9860. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  9861. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  9862. </p>
  9863. <p>
  9864. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  9865. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  9866. </p>
  9867. <table>
  9868. <thead>
  9869. <tr>
  9870. <th>Field</th>
  9871. <th>Description</th>
  9872. </tr>
  9873. </thead>
  9874. <tbody>
  9875. <tr>
  9876. <td>
  9877. <code>accessKeyIDSecretRef</code></br>
  9878. <em>
  9879. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9880. External Secrets meta/v1.SecretKeySelector
  9881. </a>
  9882. </em>
  9883. </td>
  9884. <td>
  9885. <em>(Optional)</em>
  9886. <p>The AccessKeyID is used for authentication</p>
  9887. </td>
  9888. </tr>
  9889. <tr>
  9890. <td>
  9891. <code>secretAccessKeySecretRef</code></br>
  9892. <em>
  9893. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9894. External Secrets meta/v1.SecretKeySelector
  9895. </a>
  9896. </em>
  9897. </td>
  9898. <td>
  9899. <em>(Optional)</em>
  9900. <p>The SecretAccessKey is used for authentication</p>
  9901. </td>
  9902. </tr>
  9903. <tr>
  9904. <td>
  9905. <code>sessionTokenSecretRef</code></br>
  9906. <em>
  9907. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9908. External Secrets meta/v1.SecretKeySelector
  9909. </a>
  9910. </em>
  9911. </td>
  9912. <td>
  9913. <em>(Optional)</em>
  9914. <p>The SessionToken used for authentication
  9915. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  9916. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  9917. </td>
  9918. </tr>
  9919. </tbody>
  9920. </table>
  9921. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  9922. </h3>
  9923. <p>
  9924. (<em>Appears on:</em>
  9925. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  9926. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  9927. </p>
  9928. <p>
  9929. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  9930. </p>
  9931. <table>
  9932. <thead>
  9933. <tr>
  9934. <th>Field</th>
  9935. <th>Description</th>
  9936. </tr>
  9937. </thead>
  9938. <tbody>
  9939. <tr>
  9940. <td>
  9941. <code>serviceAccountRef</code></br>
  9942. <em>
  9943. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  9944. External Secrets meta/v1.ServiceAccountSelector
  9945. </a>
  9946. </em>
  9947. </td>
  9948. <td>
  9949. <em>(Optional)</em>
  9950. </td>
  9951. </tr>
  9952. </tbody>
  9953. </table>
  9954. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  9955. </h3>
  9956. <p>
  9957. (<em>Appears on:</em>
  9958. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  9959. </p>
  9960. <p>
  9961. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  9962. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  9963. </p>
  9964. <table>
  9965. <thead>
  9966. <tr>
  9967. <th>Field</th>
  9968. <th>Description</th>
  9969. </tr>
  9970. </thead>
  9971. <tbody>
  9972. <tr>
  9973. <td>
  9974. <code>clientCert</code></br>
  9975. <em>
  9976. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9977. External Secrets meta/v1.SecretKeySelector
  9978. </a>
  9979. </em>
  9980. </td>
  9981. <td>
  9982. <em>(Optional)</em>
  9983. <p>ClientCert is a certificate to authenticate using the Cert Vault
  9984. authentication method</p>
  9985. </td>
  9986. </tr>
  9987. <tr>
  9988. <td>
  9989. <code>secretRef</code></br>
  9990. <em>
  9991. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9992. External Secrets meta/v1.SecretKeySelector
  9993. </a>
  9994. </em>
  9995. </td>
  9996. <td>
  9997. <em>(Optional)</em>
  9998. <p>SecretRef to a key in a Secret resource containing client private key to
  9999. authenticate with Vault using the Cert authentication method</p>
  10000. </td>
  10001. </tr>
  10002. </tbody>
  10003. </table>
  10004. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  10005. </h3>
  10006. <p>
  10007. (<em>Appears on:</em>
  10008. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10009. </p>
  10010. <p>
  10011. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  10012. when the Vault server requires mutual authentication.</p>
  10013. </p>
  10014. <table>
  10015. <thead>
  10016. <tr>
  10017. <th>Field</th>
  10018. <th>Description</th>
  10019. </tr>
  10020. </thead>
  10021. <tbody>
  10022. <tr>
  10023. <td>
  10024. <code>certSecretRef</code></br>
  10025. <em>
  10026. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10027. External Secrets meta/v1.SecretKeySelector
  10028. </a>
  10029. </em>
  10030. </td>
  10031. <td>
  10032. <em>(Optional)</em>
  10033. <p>CertSecretRef is a certificate added to the transport layer
  10034. when communicating with the Vault server.
  10035. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  10036. </td>
  10037. </tr>
  10038. <tr>
  10039. <td>
  10040. <code>keySecretRef</code></br>
  10041. <em>
  10042. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10043. External Secrets meta/v1.SecretKeySelector
  10044. </a>
  10045. </em>
  10046. </td>
  10047. <td>
  10048. <em>(Optional)</em>
  10049. <p>KeySecretRef to a key in a Secret resource containing client private key
  10050. added to the transport layer when communicating with the Vault server.
  10051. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  10052. </td>
  10053. </tr>
  10054. </tbody>
  10055. </table>
  10056. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  10057. </h3>
  10058. <p>
  10059. (<em>Appears on:</em>
  10060. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10061. </p>
  10062. <p>
  10063. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10064. </p>
  10065. <table>
  10066. <thead>
  10067. <tr>
  10068. <th>Field</th>
  10069. <th>Description</th>
  10070. </tr>
  10071. </thead>
  10072. <tbody>
  10073. <tr>
  10074. <td>
  10075. <code>path</code></br>
  10076. <em>
  10077. string
  10078. </em>
  10079. </td>
  10080. <td>
  10081. <em>(Optional)</em>
  10082. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  10083. </td>
  10084. </tr>
  10085. <tr>
  10086. <td>
  10087. <code>region</code></br>
  10088. <em>
  10089. string
  10090. </em>
  10091. </td>
  10092. <td>
  10093. <em>(Optional)</em>
  10094. <p>AWS region</p>
  10095. </td>
  10096. </tr>
  10097. <tr>
  10098. <td>
  10099. <code>role</code></br>
  10100. <em>
  10101. string
  10102. </em>
  10103. </td>
  10104. <td>
  10105. <em>(Optional)</em>
  10106. <p>This is the AWS role to be assumed before talking to vault</p>
  10107. </td>
  10108. </tr>
  10109. <tr>
  10110. <td>
  10111. <code>vaultRole</code></br>
  10112. <em>
  10113. string
  10114. </em>
  10115. </td>
  10116. <td>
  10117. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  10118. </td>
  10119. </tr>
  10120. <tr>
  10121. <td>
  10122. <code>externalID</code></br>
  10123. <em>
  10124. string
  10125. </em>
  10126. </td>
  10127. <td>
  10128. <p>AWS External ID set on assumed IAM roles</p>
  10129. </td>
  10130. </tr>
  10131. <tr>
  10132. <td>
  10133. <code>vaultAwsIamServerID</code></br>
  10134. <em>
  10135. string
  10136. </em>
  10137. </td>
  10138. <td>
  10139. <em>(Optional)</em>
  10140. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10141. </td>
  10142. </tr>
  10143. <tr>
  10144. <td>
  10145. <code>secretRef</code></br>
  10146. <em>
  10147. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10148. VaultAwsAuthSecretRef
  10149. </a>
  10150. </em>
  10151. </td>
  10152. <td>
  10153. <em>(Optional)</em>
  10154. <p>Specify credentials in a Secret object</p>
  10155. </td>
  10156. </tr>
  10157. <tr>
  10158. <td>
  10159. <code>jwt</code></br>
  10160. <em>
  10161. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10162. VaultAwsJWTAuth
  10163. </a>
  10164. </em>
  10165. </td>
  10166. <td>
  10167. <em>(Optional)</em>
  10168. <p>Specify a service account with IRSA enabled</p>
  10169. </td>
  10170. </tr>
  10171. </tbody>
  10172. </table>
  10173. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  10174. </h3>
  10175. <p>
  10176. (<em>Appears on:</em>
  10177. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10178. </p>
  10179. <p>
  10180. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  10181. method, with the role name and a token stored in a Kubernetes Secret resource or
  10182. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  10183. </p>
  10184. <table>
  10185. <thead>
  10186. <tr>
  10187. <th>Field</th>
  10188. <th>Description</th>
  10189. </tr>
  10190. </thead>
  10191. <tbody>
  10192. <tr>
  10193. <td>
  10194. <code>path</code></br>
  10195. <em>
  10196. string
  10197. </em>
  10198. </td>
  10199. <td>
  10200. <p>Path where the JWT authentication backend is mounted
  10201. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  10202. </td>
  10203. </tr>
  10204. <tr>
  10205. <td>
  10206. <code>role</code></br>
  10207. <em>
  10208. string
  10209. </em>
  10210. </td>
  10211. <td>
  10212. <em>(Optional)</em>
  10213. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  10214. authentication method</p>
  10215. </td>
  10216. </tr>
  10217. <tr>
  10218. <td>
  10219. <code>secretRef</code></br>
  10220. <em>
  10221. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10222. External Secrets meta/v1.SecretKeySelector
  10223. </a>
  10224. </em>
  10225. </td>
  10226. <td>
  10227. <em>(Optional)</em>
  10228. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  10229. authenticate with Vault using the JWT/OIDC authentication method.</p>
  10230. </td>
  10231. </tr>
  10232. <tr>
  10233. <td>
  10234. <code>kubernetesServiceAccountToken</code></br>
  10235. <em>
  10236. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  10237. VaultKubernetesServiceAccountTokenAuth
  10238. </a>
  10239. </em>
  10240. </td>
  10241. <td>
  10242. <em>(Optional)</em>
  10243. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  10244. a token for with the <code>TokenRequest</code> API.</p>
  10245. </td>
  10246. </tr>
  10247. </tbody>
  10248. </table>
  10249. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  10250. (<code>string</code> alias)</p></h3>
  10251. <p>
  10252. (<em>Appears on:</em>
  10253. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10254. </p>
  10255. <p>
  10256. </p>
  10257. <table>
  10258. <thead>
  10259. <tr>
  10260. <th>Value</th>
  10261. <th>Description</th>
  10262. </tr>
  10263. </thead>
  10264. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  10265. <td></td>
  10266. </tr><tr><td><p>&#34;v2&#34;</p></td>
  10267. <td></td>
  10268. </tr></tbody>
  10269. </table>
  10270. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  10271. </h3>
  10272. <p>
  10273. (<em>Appears on:</em>
  10274. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10275. </p>
  10276. <p>
  10277. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  10278. a Secret.</p>
  10279. </p>
  10280. <table>
  10281. <thead>
  10282. <tr>
  10283. <th>Field</th>
  10284. <th>Description</th>
  10285. </tr>
  10286. </thead>
  10287. <tbody>
  10288. <tr>
  10289. <td>
  10290. <code>mountPath</code></br>
  10291. <em>
  10292. string
  10293. </em>
  10294. </td>
  10295. <td>
  10296. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  10297. &ldquo;kubernetes&rdquo;</p>
  10298. </td>
  10299. </tr>
  10300. <tr>
  10301. <td>
  10302. <code>serviceAccountRef</code></br>
  10303. <em>
  10304. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10305. External Secrets meta/v1.ServiceAccountSelector
  10306. </a>
  10307. </em>
  10308. </td>
  10309. <td>
  10310. <em>(Optional)</em>
  10311. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  10312. If the service account is specified, the service account secret token JWT will be used
  10313. for authenticating with Vault. If the service account selector is not supplied,
  10314. the secretRef will be used instead.</p>
  10315. </td>
  10316. </tr>
  10317. <tr>
  10318. <td>
  10319. <code>secretRef</code></br>
  10320. <em>
  10321. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10322. External Secrets meta/v1.SecretKeySelector
  10323. </a>
  10324. </em>
  10325. </td>
  10326. <td>
  10327. <em>(Optional)</em>
  10328. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  10329. for authenticating with Vault. If a name is specified without a key,
  10330. <code>token</code> is the default. If one is not specified, the one bound to
  10331. the controller will be used.</p>
  10332. </td>
  10333. </tr>
  10334. <tr>
  10335. <td>
  10336. <code>role</code></br>
  10337. <em>
  10338. string
  10339. </em>
  10340. </td>
  10341. <td>
  10342. <p>A required field containing the Vault Role to assume. A Role binds a
  10343. Kubernetes ServiceAccount with a set of Vault policies.</p>
  10344. </td>
  10345. </tr>
  10346. </tbody>
  10347. </table>
  10348. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  10349. </h3>
  10350. <p>
  10351. (<em>Appears on:</em>
  10352. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  10353. </p>
  10354. <p>
  10355. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  10356. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  10357. </p>
  10358. <table>
  10359. <thead>
  10360. <tr>
  10361. <th>Field</th>
  10362. <th>Description</th>
  10363. </tr>
  10364. </thead>
  10365. <tbody>
  10366. <tr>
  10367. <td>
  10368. <code>serviceAccountRef</code></br>
  10369. <em>
  10370. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10371. External Secrets meta/v1.ServiceAccountSelector
  10372. </a>
  10373. </em>
  10374. </td>
  10375. <td>
  10376. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  10377. </td>
  10378. </tr>
  10379. <tr>
  10380. <td>
  10381. <code>audiences</code></br>
  10382. <em>
  10383. []string
  10384. </em>
  10385. </td>
  10386. <td>
  10387. <em>(Optional)</em>
  10388. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  10389. account token for the service account referenced by <code>serviceAccountRef</code>.
  10390. Defaults to a single audience <code>vault</code> it not specified.
  10391. Deprecated: use serviceAccountRef.Audiences instead</p>
  10392. </td>
  10393. </tr>
  10394. <tr>
  10395. <td>
  10396. <code>expirationSeconds</code></br>
  10397. <em>
  10398. int64
  10399. </em>
  10400. </td>
  10401. <td>
  10402. <em>(Optional)</em>
  10403. <p>Optional expiration time in seconds that will be used to request a temporary
  10404. Kubernetes service account token for the service account referenced by
  10405. <code>serviceAccountRef</code>.
  10406. Deprecated: this will be removed in the future.
  10407. Defaults to 10 minutes.</p>
  10408. </td>
  10409. </tr>
  10410. </tbody>
  10411. </table>
  10412. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  10413. </h3>
  10414. <p>
  10415. (<em>Appears on:</em>
  10416. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10417. </p>
  10418. <p>
  10419. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  10420. with the username and password stored in a Kubernetes Secret resource.</p>
  10421. </p>
  10422. <table>
  10423. <thead>
  10424. <tr>
  10425. <th>Field</th>
  10426. <th>Description</th>
  10427. </tr>
  10428. </thead>
  10429. <tbody>
  10430. <tr>
  10431. <td>
  10432. <code>path</code></br>
  10433. <em>
  10434. string
  10435. </em>
  10436. </td>
  10437. <td>
  10438. <p>Path where the LDAP authentication backend is mounted
  10439. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  10440. </td>
  10441. </tr>
  10442. <tr>
  10443. <td>
  10444. <code>username</code></br>
  10445. <em>
  10446. string
  10447. </em>
  10448. </td>
  10449. <td>
  10450. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  10451. authentication method</p>
  10452. </td>
  10453. </tr>
  10454. <tr>
  10455. <td>
  10456. <code>secretRef</code></br>
  10457. <em>
  10458. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10459. External Secrets meta/v1.SecretKeySelector
  10460. </a>
  10461. </em>
  10462. </td>
  10463. <td>
  10464. <em>(Optional)</em>
  10465. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  10466. user used to authenticate with Vault using the LDAP authentication
  10467. method</p>
  10468. </td>
  10469. </tr>
  10470. </tbody>
  10471. </table>
  10472. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  10473. </h3>
  10474. <p>
  10475. (<em>Appears on:</em>
  10476. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10477. </p>
  10478. <p>
  10479. <p>Configures an store to sync secrets using a HashiCorp Vault
  10480. KV backend.</p>
  10481. </p>
  10482. <table>
  10483. <thead>
  10484. <tr>
  10485. <th>Field</th>
  10486. <th>Description</th>
  10487. </tr>
  10488. </thead>
  10489. <tbody>
  10490. <tr>
  10491. <td>
  10492. <code>auth</code></br>
  10493. <em>
  10494. <a href="#external-secrets.io/v1.VaultAuth">
  10495. VaultAuth
  10496. </a>
  10497. </em>
  10498. </td>
  10499. <td>
  10500. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  10501. </td>
  10502. </tr>
  10503. <tr>
  10504. <td>
  10505. <code>server</code></br>
  10506. <em>
  10507. string
  10508. </em>
  10509. </td>
  10510. <td>
  10511. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  10512. </td>
  10513. </tr>
  10514. <tr>
  10515. <td>
  10516. <code>path</code></br>
  10517. <em>
  10518. string
  10519. </em>
  10520. </td>
  10521. <td>
  10522. <em>(Optional)</em>
  10523. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  10524. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  10525. for fetching secrets from Vault is optional and will be appended
  10526. if not present in specified path.</p>
  10527. </td>
  10528. </tr>
  10529. <tr>
  10530. <td>
  10531. <code>version</code></br>
  10532. <em>
  10533. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  10534. VaultKVStoreVersion
  10535. </a>
  10536. </em>
  10537. </td>
  10538. <td>
  10539. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  10540. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  10541. </td>
  10542. </tr>
  10543. <tr>
  10544. <td>
  10545. <code>namespace</code></br>
  10546. <em>
  10547. string
  10548. </em>
  10549. </td>
  10550. <td>
  10551. <em>(Optional)</em>
  10552. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  10553. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10554. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  10555. </td>
  10556. </tr>
  10557. <tr>
  10558. <td>
  10559. <code>caBundle</code></br>
  10560. <em>
  10561. []byte
  10562. </em>
  10563. </td>
  10564. <td>
  10565. <em>(Optional)</em>
  10566. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  10567. if the Server URL is using HTTPS protocol. This parameter is ignored for
  10568. plain HTTP protocol connection. If not set the system root certificates
  10569. are used to validate the TLS connection.</p>
  10570. </td>
  10571. </tr>
  10572. <tr>
  10573. <td>
  10574. <code>tls</code></br>
  10575. <em>
  10576. <a href="#external-secrets.io/v1.VaultClientTLS">
  10577. VaultClientTLS
  10578. </a>
  10579. </em>
  10580. </td>
  10581. <td>
  10582. <em>(Optional)</em>
  10583. <p>The configuration used for client side related TLS communication, when the Vault server
  10584. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  10585. This parameter is ignored for plain HTTP protocol connection.
  10586. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  10587. which is available under the <code>auth.cert</code> section.</p>
  10588. </td>
  10589. </tr>
  10590. <tr>
  10591. <td>
  10592. <code>caProvider</code></br>
  10593. <em>
  10594. <a href="#external-secrets.io/v1.CAProvider">
  10595. CAProvider
  10596. </a>
  10597. </em>
  10598. </td>
  10599. <td>
  10600. <em>(Optional)</em>
  10601. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  10602. </td>
  10603. </tr>
  10604. <tr>
  10605. <td>
  10606. <code>readYourWrites</code></br>
  10607. <em>
  10608. bool
  10609. </em>
  10610. </td>
  10611. <td>
  10612. <em>(Optional)</em>
  10613. <p>ReadYourWrites ensures isolated read-after-write semantics by
  10614. providing discovered cluster replication states in each request.
  10615. More information about eventual consistency in Vault can be found here
  10616. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  10617. </td>
  10618. </tr>
  10619. <tr>
  10620. <td>
  10621. <code>forwardInconsistent</code></br>
  10622. <em>
  10623. bool
  10624. </em>
  10625. </td>
  10626. <td>
  10627. <em>(Optional)</em>
  10628. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  10629. leader instead of simply retrying within a loop. This can increase performance if
  10630. the option is enabled serverside.
  10631. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  10632. </td>
  10633. </tr>
  10634. <tr>
  10635. <td>
  10636. <code>headers</code></br>
  10637. <em>
  10638. map[string]string
  10639. </em>
  10640. </td>
  10641. <td>
  10642. <em>(Optional)</em>
  10643. <p>Headers to be added in Vault request</p>
  10644. </td>
  10645. </tr>
  10646. </tbody>
  10647. </table>
  10648. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  10649. </h3>
  10650. <p>
  10651. (<em>Appears on:</em>
  10652. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10653. </p>
  10654. <p>
  10655. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  10656. with the username and password stored in a Kubernetes Secret resource.</p>
  10657. </p>
  10658. <table>
  10659. <thead>
  10660. <tr>
  10661. <th>Field</th>
  10662. <th>Description</th>
  10663. </tr>
  10664. </thead>
  10665. <tbody>
  10666. <tr>
  10667. <td>
  10668. <code>path</code></br>
  10669. <em>
  10670. string
  10671. </em>
  10672. </td>
  10673. <td>
  10674. <p>Path where the UserPassword authentication backend is mounted
  10675. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  10676. </td>
  10677. </tr>
  10678. <tr>
  10679. <td>
  10680. <code>username</code></br>
  10681. <em>
  10682. string
  10683. </em>
  10684. </td>
  10685. <td>
  10686. <p>Username is a username used to authenticate using the UserPass Vault
  10687. authentication method</p>
  10688. </td>
  10689. </tr>
  10690. <tr>
  10691. <td>
  10692. <code>secretRef</code></br>
  10693. <em>
  10694. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10695. External Secrets meta/v1.SecretKeySelector
  10696. </a>
  10697. </em>
  10698. </td>
  10699. <td>
  10700. <em>(Optional)</em>
  10701. <p>SecretRef to a key in a Secret resource containing password for the
  10702. user used to authenticate with Vault using the UserPass authentication
  10703. method</p>
  10704. </td>
  10705. </tr>
  10706. </tbody>
  10707. </table>
  10708. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  10709. </h3>
  10710. <p>
  10711. (<em>Appears on:</em>
  10712. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  10713. </p>
  10714. <p>
  10715. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  10716. </p>
  10717. <table>
  10718. <thead>
  10719. <tr>
  10720. <th>Field</th>
  10721. <th>Description</th>
  10722. </tr>
  10723. </thead>
  10724. <tbody>
  10725. <tr>
  10726. <td>
  10727. <code>type</code></br>
  10728. <em>
  10729. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  10730. WebhookCAProviderType
  10731. </a>
  10732. </em>
  10733. </td>
  10734. <td>
  10735. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  10736. </td>
  10737. </tr>
  10738. <tr>
  10739. <td>
  10740. <code>name</code></br>
  10741. <em>
  10742. string
  10743. </em>
  10744. </td>
  10745. <td>
  10746. <p>The name of the object located at the provider type.</p>
  10747. </td>
  10748. </tr>
  10749. <tr>
  10750. <td>
  10751. <code>key</code></br>
  10752. <em>
  10753. string
  10754. </em>
  10755. </td>
  10756. <td>
  10757. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  10758. </td>
  10759. </tr>
  10760. <tr>
  10761. <td>
  10762. <code>namespace</code></br>
  10763. <em>
  10764. string
  10765. </em>
  10766. </td>
  10767. <td>
  10768. <em>(Optional)</em>
  10769. <p>The namespace the Provider type is in.</p>
  10770. </td>
  10771. </tr>
  10772. </tbody>
  10773. </table>
  10774. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  10775. (<code>string</code> alias)</p></h3>
  10776. <p>
  10777. (<em>Appears on:</em>
  10778. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  10779. </p>
  10780. <p>
  10781. </p>
  10782. <table>
  10783. <thead>
  10784. <tr>
  10785. <th>Value</th>
  10786. <th>Description</th>
  10787. </tr>
  10788. </thead>
  10789. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  10790. <td></td>
  10791. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  10792. <td></td>
  10793. </tr></tbody>
  10794. </table>
  10795. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  10796. </h3>
  10797. <p>
  10798. (<em>Appears on:</em>
  10799. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10800. </p>
  10801. <p>
  10802. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  10803. </p>
  10804. <table>
  10805. <thead>
  10806. <tr>
  10807. <th>Field</th>
  10808. <th>Description</th>
  10809. </tr>
  10810. </thead>
  10811. <tbody>
  10812. <tr>
  10813. <td>
  10814. <code>method</code></br>
  10815. <em>
  10816. string
  10817. </em>
  10818. </td>
  10819. <td>
  10820. <p>Webhook Method</p>
  10821. </td>
  10822. </tr>
  10823. <tr>
  10824. <td>
  10825. <code>url</code></br>
  10826. <em>
  10827. string
  10828. </em>
  10829. </td>
  10830. <td>
  10831. <p>Webhook url to call</p>
  10832. </td>
  10833. </tr>
  10834. <tr>
  10835. <td>
  10836. <code>headers</code></br>
  10837. <em>
  10838. map[string]string
  10839. </em>
  10840. </td>
  10841. <td>
  10842. <em>(Optional)</em>
  10843. <p>Headers</p>
  10844. </td>
  10845. </tr>
  10846. <tr>
  10847. <td>
  10848. <code>body</code></br>
  10849. <em>
  10850. string
  10851. </em>
  10852. </td>
  10853. <td>
  10854. <em>(Optional)</em>
  10855. <p>Body</p>
  10856. </td>
  10857. </tr>
  10858. <tr>
  10859. <td>
  10860. <code>timeout</code></br>
  10861. <em>
  10862. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  10863. Kubernetes meta/v1.Duration
  10864. </a>
  10865. </em>
  10866. </td>
  10867. <td>
  10868. <em>(Optional)</em>
  10869. <p>Timeout</p>
  10870. </td>
  10871. </tr>
  10872. <tr>
  10873. <td>
  10874. <code>result</code></br>
  10875. <em>
  10876. <a href="#external-secrets.io/v1.WebhookResult">
  10877. WebhookResult
  10878. </a>
  10879. </em>
  10880. </td>
  10881. <td>
  10882. <p>Result formatting</p>
  10883. </td>
  10884. </tr>
  10885. <tr>
  10886. <td>
  10887. <code>secrets</code></br>
  10888. <em>
  10889. <a href="#external-secrets.io/v1.WebhookSecret">
  10890. []WebhookSecret
  10891. </a>
  10892. </em>
  10893. </td>
  10894. <td>
  10895. <em>(Optional)</em>
  10896. <p>Secrets to fill in templates
  10897. These secrets will be passed to the templating function as key value pairs under the given name</p>
  10898. </td>
  10899. </tr>
  10900. <tr>
  10901. <td>
  10902. <code>caBundle</code></br>
  10903. <em>
  10904. []byte
  10905. </em>
  10906. </td>
  10907. <td>
  10908. <em>(Optional)</em>
  10909. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  10910. if the Server URL is using HTTPS protocol. This parameter is ignored for
  10911. plain HTTP protocol connection. If not set the system root certificates
  10912. are used to validate the TLS connection.</p>
  10913. </td>
  10914. </tr>
  10915. <tr>
  10916. <td>
  10917. <code>caProvider</code></br>
  10918. <em>
  10919. <a href="#external-secrets.io/v1.WebhookCAProvider">
  10920. WebhookCAProvider
  10921. </a>
  10922. </em>
  10923. </td>
  10924. <td>
  10925. <em>(Optional)</em>
  10926. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  10927. </td>
  10928. </tr>
  10929. </tbody>
  10930. </table>
  10931. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  10932. </h3>
  10933. <p>
  10934. (<em>Appears on:</em>
  10935. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  10936. </p>
  10937. <p>
  10938. </p>
  10939. <table>
  10940. <thead>
  10941. <tr>
  10942. <th>Field</th>
  10943. <th>Description</th>
  10944. </tr>
  10945. </thead>
  10946. <tbody>
  10947. <tr>
  10948. <td>
  10949. <code>jsonPath</code></br>
  10950. <em>
  10951. string
  10952. </em>
  10953. </td>
  10954. <td>
  10955. <em>(Optional)</em>
  10956. <p>Json path of return value</p>
  10957. </td>
  10958. </tr>
  10959. </tbody>
  10960. </table>
  10961. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  10962. </h3>
  10963. <p>
  10964. (<em>Appears on:</em>
  10965. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  10966. </p>
  10967. <p>
  10968. </p>
  10969. <table>
  10970. <thead>
  10971. <tr>
  10972. <th>Field</th>
  10973. <th>Description</th>
  10974. </tr>
  10975. </thead>
  10976. <tbody>
  10977. <tr>
  10978. <td>
  10979. <code>name</code></br>
  10980. <em>
  10981. string
  10982. </em>
  10983. </td>
  10984. <td>
  10985. <p>Name of this secret in templates</p>
  10986. </td>
  10987. </tr>
  10988. <tr>
  10989. <td>
  10990. <code>secretRef</code></br>
  10991. <em>
  10992. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10993. External Secrets meta/v1.SecretKeySelector
  10994. </a>
  10995. </em>
  10996. </td>
  10997. <td>
  10998. <p>Secret ref to fill in credentials</p>
  10999. </td>
  11000. </tr>
  11001. </tbody>
  11002. </table>
  11003. <h3 id="external-secrets.io/v1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  11004. </h3>
  11005. <p>
  11006. (<em>Appears on:</em>
  11007. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11008. </p>
  11009. <p>
  11010. </p>
  11011. <table>
  11012. <thead>
  11013. <tr>
  11014. <th>Field</th>
  11015. <th>Description</th>
  11016. </tr>
  11017. </thead>
  11018. <tbody>
  11019. <tr>
  11020. <td>
  11021. <code>authorizedKeySecretRef</code></br>
  11022. <em>
  11023. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11024. External Secrets meta/v1.SecretKeySelector
  11025. </a>
  11026. </em>
  11027. </td>
  11028. <td>
  11029. <em>(Optional)</em>
  11030. <p>The authorized key used for authentication</p>
  11031. </td>
  11032. </tr>
  11033. </tbody>
  11034. </table>
  11035. <h3 id="external-secrets.io/v1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  11036. </h3>
  11037. <p>
  11038. (<em>Appears on:</em>
  11039. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11040. </p>
  11041. <p>
  11042. </p>
  11043. <table>
  11044. <thead>
  11045. <tr>
  11046. <th>Field</th>
  11047. <th>Description</th>
  11048. </tr>
  11049. </thead>
  11050. <tbody>
  11051. <tr>
  11052. <td>
  11053. <code>certSecretRef</code></br>
  11054. <em>
  11055. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11056. External Secrets meta/v1.SecretKeySelector
  11057. </a>
  11058. </em>
  11059. </td>
  11060. <td>
  11061. </td>
  11062. </tr>
  11063. </tbody>
  11064. </table>
  11065. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  11066. </h3>
  11067. <p>
  11068. (<em>Appears on:</em>
  11069. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11070. </p>
  11071. <p>
  11072. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  11073. </p>
  11074. <table>
  11075. <thead>
  11076. <tr>
  11077. <th>Field</th>
  11078. <th>Description</th>
  11079. </tr>
  11080. </thead>
  11081. <tbody>
  11082. <tr>
  11083. <td>
  11084. <code>apiEndpoint</code></br>
  11085. <em>
  11086. string
  11087. </em>
  11088. </td>
  11089. <td>
  11090. <em>(Optional)</em>
  11091. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11092. </td>
  11093. </tr>
  11094. <tr>
  11095. <td>
  11096. <code>auth</code></br>
  11097. <em>
  11098. <a href="#external-secrets.io/v1.YandexCertificateManagerAuth">
  11099. YandexCertificateManagerAuth
  11100. </a>
  11101. </em>
  11102. </td>
  11103. <td>
  11104. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  11105. </td>
  11106. </tr>
  11107. <tr>
  11108. <td>
  11109. <code>caProvider</code></br>
  11110. <em>
  11111. <a href="#external-secrets.io/v1.YandexCertificateManagerCAProvider">
  11112. YandexCertificateManagerCAProvider
  11113. </a>
  11114. </em>
  11115. </td>
  11116. <td>
  11117. <em>(Optional)</em>
  11118. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11119. </td>
  11120. </tr>
  11121. </tbody>
  11122. </table>
  11123. <h3 id="external-secrets.io/v1.YandexLockboxAuth">YandexLockboxAuth
  11124. </h3>
  11125. <p>
  11126. (<em>Appears on:</em>
  11127. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11128. </p>
  11129. <p>
  11130. </p>
  11131. <table>
  11132. <thead>
  11133. <tr>
  11134. <th>Field</th>
  11135. <th>Description</th>
  11136. </tr>
  11137. </thead>
  11138. <tbody>
  11139. <tr>
  11140. <td>
  11141. <code>authorizedKeySecretRef</code></br>
  11142. <em>
  11143. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11144. External Secrets meta/v1.SecretKeySelector
  11145. </a>
  11146. </em>
  11147. </td>
  11148. <td>
  11149. <em>(Optional)</em>
  11150. <p>The authorized key used for authentication</p>
  11151. </td>
  11152. </tr>
  11153. </tbody>
  11154. </table>
  11155. <h3 id="external-secrets.io/v1.YandexLockboxCAProvider">YandexLockboxCAProvider
  11156. </h3>
  11157. <p>
  11158. (<em>Appears on:</em>
  11159. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11160. </p>
  11161. <p>
  11162. </p>
  11163. <table>
  11164. <thead>
  11165. <tr>
  11166. <th>Field</th>
  11167. <th>Description</th>
  11168. </tr>
  11169. </thead>
  11170. <tbody>
  11171. <tr>
  11172. <td>
  11173. <code>certSecretRef</code></br>
  11174. <em>
  11175. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11176. External Secrets meta/v1.SecretKeySelector
  11177. </a>
  11178. </em>
  11179. </td>
  11180. <td>
  11181. </td>
  11182. </tr>
  11183. </tbody>
  11184. </table>
  11185. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  11186. </h3>
  11187. <p>
  11188. (<em>Appears on:</em>
  11189. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11190. </p>
  11191. <p>
  11192. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  11193. </p>
  11194. <table>
  11195. <thead>
  11196. <tr>
  11197. <th>Field</th>
  11198. <th>Description</th>
  11199. </tr>
  11200. </thead>
  11201. <tbody>
  11202. <tr>
  11203. <td>
  11204. <code>apiEndpoint</code></br>
  11205. <em>
  11206. string
  11207. </em>
  11208. </td>
  11209. <td>
  11210. <em>(Optional)</em>
  11211. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11212. </td>
  11213. </tr>
  11214. <tr>
  11215. <td>
  11216. <code>auth</code></br>
  11217. <em>
  11218. <a href="#external-secrets.io/v1.YandexLockboxAuth">
  11219. YandexLockboxAuth
  11220. </a>
  11221. </em>
  11222. </td>
  11223. <td>
  11224. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  11225. </td>
  11226. </tr>
  11227. <tr>
  11228. <td>
  11229. <code>caProvider</code></br>
  11230. <em>
  11231. <a href="#external-secrets.io/v1.YandexLockboxCAProvider">
  11232. YandexLockboxCAProvider
  11233. </a>
  11234. </em>
  11235. </td>
  11236. <td>
  11237. <em>(Optional)</em>
  11238. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11239. </td>
  11240. </tr>
  11241. </tbody>
  11242. </table>
  11243. <hr/>
  11244. <p><em>
  11245. Generated with <code>gen-crd-api-reference-docs</code>.
  11246. </em></p>
  11247. </article>
  11248. </div>
  11249. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  11250. </div>
  11251. </main>
  11252. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  11253. <footer class="md-footer">
  11254. <div class="md-footer-meta md-typeset">
  11255. <div class="md-footer-meta__inner md-grid">
  11256. <div class="md-copyright">
  11257. <div class="md-copyright__highlight">
  11258. &copy; 2025 The external-secrets Authors.<br/>
  11259. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  11260. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  11261. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  11262. </div>
  11263. Made with
  11264. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  11265. Material for MkDocs
  11266. </a>
  11267. </div>
  11268. </div>
  11269. </div>
  11270. </footer>
  11271. </div>
  11272. <div class="md-dialog" data-md-component="dialog">
  11273. <div class="md-dialog__inner md-typeset"></div>
  11274. </div>
  11275. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.f8cc74c7.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  11276. <script src="../../assets/javascripts/bundle.c8b220af.min.js"></script>
  11277. </body>
  11278. </html>